Struct rapr::RaprClient[][src]

pub struct RaprClient { /* fields omitted */ }

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]

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]

fn default() -> Self[src]

Return the default RaprClient

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]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.