[][src]Struct slack_api::reactions::ListRequest

pub struct ListRequest<'a> {
    pub user: Option<&'a str>,
    pub full: Option<bool>,
    pub count: Option<u32>,
    pub page: Option<u32>,
}

Fields

user: Option<&'a str>

Show reactions made by this user. Defaults to the authed user.

full: Option<bool>

If true always return the complete reaction list.

count: Option<u32>

Number of items to return per page.

page: Option<u32>

Page number of results to return.

Trait Implementations

impl<'a> Clone for ListRequest<'a>[src]

impl<'a> Debug for ListRequest<'a>[src]

impl<'a> Default for ListRequest<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for ListRequest<'a>

impl<'a> Send for ListRequest<'a>

impl<'a> Sync for ListRequest<'a>

impl<'a> Unpin for ListRequest<'a>

impl<'a> UnwindSafe for ListRequest<'a>

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.