[][src]Struct snoo::reddit_app::RedditApp

pub struct RedditApp { /* fields omitted */ }

Implementations

impl RedditApp[src]

pub fn new() -> Result<RedditApp>[src]

New app with no authenication and no rate limiter.

pub async fn new_script<'_, '_, '_, '_>(
    username: &'_ str,
    password: &'_ str,
    id: &'_ str,
    secret: &'_ str
) -> Result<Self>
[src]

pub async fn me<'_>(&'_ self) -> Result<OAuthMeResponse>[src]

pub fn create_endpoint(&self, builder: EndpointBuilder) -> Result<Endpoint>[src]

Builds a new ep

pub fn create_enddpoint_str(&self, str_ep: &str) -> Result<Endpoint>[src]

Builds a new ep from a string

pub async fn create_request<'_, T: DeserializeOwned>(
    &'_ self,
    target_url: Url
) -> Result<T>
[src]

Used for all [GET] api calls.

Trait Implementations

impl Clone for RedditApp[src]

Auto Trait Implementations

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.