Struct dogehouse_rs::prelude::Client[][src]

pub struct Client<'t, T> where
    T: Handler
{ /* fields omitted */ }

Implementations

impl<'t, T> Client<'t, T> where
    T: Handler
[src]

pub fn new(token: &'t str, refresh_token: &'t str) -> Self[src]

pub fn add_handler(self, handler: T) -> Self[src]

pub fn start(&mut self) -> Result<(), &'static str>[src]

Trait Implementations

impl<'t, T: Clone> Clone for Client<'t, T> where
    T: Handler
[src]

impl<'t, T: Copy> Copy for Client<'t, T> where
    T: Handler
[src]

impl<'t, T: Debug> Debug for Client<'t, T> where
    T: Handler
[src]

Auto Trait Implementations

impl<'t, T> RefUnwindSafe for Client<'t, T> where
    T: RefUnwindSafe

impl<'t, T> Send for Client<'t, T> where
    T: Send

impl<'t, T> Sync for Client<'t, T> where
    T: Sync

impl<'t, T> Unpin for Client<'t, T> where
    T: Unpin

impl<'t, T> UnwindSafe for Client<'t, T> where
    T: UnwindSafe

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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,