[][src]Struct slack_api::im::ListRequest

pub struct ListRequest<'a> {
    pub cursor: Option<&'a str>,
    pub limit: Option<u32>,
}

Fields

cursor: Option<&'a str>

Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. Default value fetches the first "page" of the collection. See pagination for more detail.

limit: Option<u32>

The maximum number of items to return. Fewer than the requested number of items may be returned, even if the end of the users list hasn't been reached.

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.