Struct rapr::RaprClient [−][src]
Reddit api client.
Uses a reqwest::Client internally.
Currently no authentication
Implementations
impl RaprClient[src]
pub fn new() -> Self[src]
Make a RaprClient
pub fn with_user_agent(user_agent: &str) -> Result<Self, Error>[src]
Make a RaprClient with a custom user_agent (since reddit ratelimits same user agent being used a ton of times)
pub fn default() -> Self[src]
pub async fn fetch(
    &self, 
    count: u32, 
    sub: &mut RaSub
) -> Result<Vec<RaPost>, Error>[src]
&self,
count: u32,
sub: &mut RaSub
) -> Result<Vec<RaPost>, Error>
Fetch posts from subreddit and store them in the subreddit object.
Note: First fetch always seems to pull two pinned posts which are not marked pinned in the json
Trait Implementations
impl Debug for RaprClient[src]
impl Default for RaprClient[src]
Auto Trait Implementations
impl !RefUnwindSafe for RaprClient[src]
impl Send for RaprClient[src]
impl Sync for RaprClient[src]
impl Unpin for RaprClient[src]
impl !UnwindSafe for RaprClient[src]
Blanket Implementations
impl<T> Any for T where
    T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
    T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
    T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
    U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
    U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, [src]
U: TryFrom<T>,