Struct slack_morphism::api::SlackApiUsersListRequest
source · pub struct SlackApiUsersListRequest {
pub cursor: Option<SlackCursorId>,
pub include_locale: Option<bool>,
pub limit: Option<u16>,
pub team_id: Option<SlackTeamId>,
}
Fields§
§cursor: Option<SlackCursorId>
§include_locale: Option<bool>
§limit: Option<u16>
§team_id: Option<SlackTeamId>
Implementations§
source§impl SlackApiUsersListRequest
impl SlackApiUsersListRequest
pub fn new() -> Self
pub fn cursor(&mut self, value: SlackCursorId) -> &mut Self
pub fn reset_cursor(&mut self) -> &mut Self
pub fn mopt_cursor(&mut self, value: Option<SlackCursorId>) -> &mut Self
pub fn with_cursor(self, value: SlackCursorId) -> Self
pub fn without_cursor(self) -> Self
pub fn opt_cursor(self, value: Option<SlackCursorId>) -> Self
pub fn include_locale(&mut self, value: bool) -> &mut Self
pub fn reset_include_locale(&mut self) -> &mut Self
pub fn mopt_include_locale(&mut self, value: Option<bool>) -> &mut Self
pub fn with_include_locale(self, value: bool) -> Self
pub fn without_include_locale(self) -> Self
pub fn opt_include_locale(self, value: Option<bool>) -> Self
pub fn limit(&mut self, value: u16) -> &mut Self
pub fn reset_limit(&mut self) -> &mut Self
pub fn mopt_limit(&mut self, value: Option<u16>) -> &mut Self
pub fn with_limit(self, value: u16) -> Self
pub fn without_limit(self) -> Self
pub fn opt_limit(self, value: Option<u16>) -> Self
pub fn team_id(&mut self, value: SlackTeamId) -> &mut Self
pub fn reset_team_id(&mut self) -> &mut Self
pub fn mopt_team_id(&mut self, value: Option<SlackTeamId>) -> &mut Self
pub fn with_team_id(self, value: SlackTeamId) -> Self
pub fn without_team_id(self) -> Self
pub fn opt_team_id(self, value: Option<SlackTeamId>) -> Self
Trait Implementations§
source§impl Clone for SlackApiUsersListRequest
impl Clone for SlackApiUsersListRequest
source§fn clone(&self) -> SlackApiUsersListRequest
fn clone(&self) -> SlackApiUsersListRequest
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SlackApiUsersListRequest
impl Debug for SlackApiUsersListRequest
source§impl<'de> Deserialize<'de> for SlackApiUsersListRequest
impl<'de> Deserialize<'de> for SlackApiUsersListRequest
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<SlackApiUsersListRequestInit> for SlackApiUsersListRequest
impl From<SlackApiUsersListRequestInit> for SlackApiUsersListRequest
source§fn from(value: SlackApiUsersListRequestInit) -> Self
fn from(value: SlackApiUsersListRequestInit) -> Self
Converts to this type from the input type.
source§impl PartialEq for SlackApiUsersListRequest
impl PartialEq for SlackApiUsersListRequest
source§fn eq(&self, other: &SlackApiUsersListRequest) -> bool
fn eq(&self, other: &SlackApiUsersListRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for SlackApiUsersListRequest
impl Serialize for SlackApiUsersListRequest
source§impl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiUsersListRequest
impl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiUsersListRequest
type ResponseType = SlackApiUsersListResponse
type CursorType = SlackCursorId
type ResponseItemType = SlackUser
fn with_new_cursor(&self, new_cursor: Option<&Self::CursorType>) -> Self
fn scroll<'a, 's>( &'a self, session: &'a SlackClientSession<'s, SCHC> ) -> BoxFuture<'a, ClientResult<Self::ResponseType>>
impl StructuralPartialEq for SlackApiUsersListRequest
Auto Trait Implementations§
impl RefUnwindSafe for SlackApiUsersListRequest
impl Send for SlackApiUsersListRequest
impl Sync for SlackApiUsersListRequest
impl Unpin for SlackApiUsersListRequest
impl UnwindSafe for SlackApiUsersListRequest
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more