[][src]Struct tweetust::clients::DirectMessagesClient

pub struct DirectMessagesClient<'a, A: 'a + Authenticator, H: 'a + HttpHandler> { /* fields omitted */ }

Provides a set of methods for the wrapper of GET/POST direct_messages.

Methods

impl<'a, A: Authenticator, H: HttpHandler> DirectMessagesClient<'a, A, H>[src]

pub fn received(&self) -> DirectMessagesReceivedRequestBuilder<'a, A, H>[src]

Returns the most recent direct messages sent to the authenticating user.

pub fn sent(&self) -> DirectMessagesSentRequestBuilder<'a, A, H>[src]

Returns the most recent direct messages sent by the authenticating user.

pub fn show(&self, id: i64) -> DirectMessagesShowRequestBuilder<'a, A, H>[src]

Returns a single direct message, specified by an id parameter.

pub fn new<T1: Into<Cow<'a, str>>>(
    &self,
    text: T1
) -> DirectMessagesNewRequestBuilder<'a, A, H>
[src]

Sends a new direct message to the specified user from the authenticating user.

pub fn destroy(&self, id: i64) -> DirectMessagesDestroyRequestBuilder<'a, A, H>[src]

Destroys the direct message specified in the required ID parameter.

Trait Implementations

impl<'a, A: Clone + 'a + Authenticator, H: Clone + 'a + HttpHandler> Clone for DirectMessagesClient<'a, A, H>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a, A: Debug + 'a + Authenticator, H: Debug + 'a + HttpHandler> Debug for DirectMessagesClient<'a, A, H>[src]

Auto Trait Implementations

impl<'a, A, H> Send for DirectMessagesClient<'a, A, H> where
    A: Sync,
    H: Sync

impl<'a, A, H> Sync for DirectMessagesClient<'a, A, H> where
    A: Sync,
    H: Sync

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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.

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

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.