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§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>>
fn scroller<'a, 'b>(
&'a self,
) -> Box<dyn SlackApiResponseScroller<SCHC, ResponseType = Self::ResponseType, CursorType = Self::CursorType, ResponseItemType = Self::ResponseItemType> + Send + Sync + 'b>where
Self: Send + Clone + Sync + 'b,
Self::ResponseType: Send + Clone + Sync + SlackApiScrollableResponse<CursorType = Self::CursorType, ResponseItemType = Self::ResponseItemType> + 'b,
Self::CursorType: Send + Clone + Sync + 'b,
Self::ResponseItemType: Send + Clone + Sync + 'b,
impl StructuralPartialEq for SlackApiUsersListRequest
Auto Trait Implementations§
impl Freeze for SlackApiUsersListRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)