[−][src]Struct tweetust::clients::DirectMessagesClient
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]
&self,
text: T1
) -> DirectMessagesNewRequestBuilder<'a, A, H>
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(&self) -> 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,
A: Sync,
H: Sync,
impl<'a, A, H> Sync for DirectMessagesClient<'a, A, H> where
A: Sync,
H: Sync,
A: Sync,
H: Sync,
Blanket Implementations
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
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.
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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Typeable for T where
T: Any,
T: Any,