[][src]Struct slack_morphism::api::SlackApiUsersListRequest

pub struct SlackApiUsersListRequest {
    pub cursor: Option<SlackCursorId>,
    pub include_locale: Option<bool>,
    pub limit: Option<u16>,
}

Fields

cursor: Option<SlackCursorId>include_locale: Option<bool>limit: Option<u16>

Implementations

impl SlackApiUsersListRequest[src]

pub fn new() -> Self[src]

pub fn cursor(&mut self, value: SlackCursorId) -> &mut Self[src]

pub fn reset_cursor(&mut self) -> &mut Self[src]

pub fn mopt_cursor(&mut self, value: Option<SlackCursorId>) -> &mut Self[src]

pub fn with_cursor(self, value: SlackCursorId) -> Self[src]

pub fn without_cursor(self) -> Self[src]

pub fn opt_cursor(self, value: Option<SlackCursorId>) -> Self[src]

pub fn include_locale(&mut self, value: bool) -> &mut Self[src]

pub fn reset_include_locale(&mut self) -> &mut Self[src]

pub fn mopt_include_locale(&mut self, value: Option<bool>) -> &mut Self[src]

pub fn with_include_locale(self, value: bool) -> Self[src]

pub fn without_include_locale(self) -> Self[src]

pub fn opt_include_locale(self, value: Option<bool>) -> Self[src]

pub fn limit(&mut self, value: u16) -> &mut Self[src]

pub fn reset_limit(&mut self) -> &mut Self[src]

pub fn mopt_limit(&mut self, value: Option<u16>) -> &mut Self[src]

pub fn with_limit(self, value: u16) -> Self[src]

pub fn without_limit(self) -> Self[src]

pub fn opt_limit(self, value: Option<u16>) -> Self[src]

Trait Implementations

impl Clone for SlackApiUsersListRequest[src]

impl Debug for SlackApiUsersListRequest[src]

impl<'de> Deserialize<'de> for SlackApiUsersListRequest[src]

impl From<SlackApiUsersListRequestInit> for SlackApiUsersListRequest[src]

impl PartialEq<SlackApiUsersListRequest> for SlackApiUsersListRequest[src]

impl Serialize for SlackApiUsersListRequest[src]

impl SlackApiScrollableRequest for SlackApiUsersListRequest[src]

type ResponseType = SlackApiUsersListResponse

type CursorType = SlackCursorId

type ResponseItemType = SlackUser

impl StructuralPartialEq for SlackApiUsersListRequest[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.