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
sourceimpl 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
sourceimpl Clone for SlackApiUsersListRequest
impl Clone for SlackApiUsersListRequest
sourcefn clone(&self) -> SlackApiUsersListRequest
fn clone(&self) -> SlackApiUsersListRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for SlackApiUsersListRequest
impl Debug for SlackApiUsersListRequest
sourceimpl<'de> Deserialize<'de> for SlackApiUsersListRequest
impl<'de> Deserialize<'de> for SlackApiUsersListRequest
sourcefn 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
sourceimpl From<SlackApiUsersListRequestInit> for SlackApiUsersListRequest
impl From<SlackApiUsersListRequestInit> for SlackApiUsersListRequest
sourcefn from(value: SlackApiUsersListRequestInit) -> Self
fn from(value: SlackApiUsersListRequestInit) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackApiUsersListRequest> for SlackApiUsersListRequest
impl PartialEq<SlackApiUsersListRequest> for SlackApiUsersListRequest
sourcefn eq(&self, other: &SlackApiUsersListRequest) -> bool
fn eq(&self, other: &SlackApiUsersListRequest) -> bool
sourceimpl Serialize for SlackApiUsersListRequest
impl Serialize for SlackApiUsersListRequest
sourceimpl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiUsersListRequestwhere
SCHC: SlackClientHttpConnector + Send + Sync + Clone + 'static,
impl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiUsersListRequestwhere
SCHC: SlackClientHttpConnector + Send + Sync + Clone + 'static,
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more