pub struct SlackApiUsersConversationsRequest {
pub cursor: Option<SlackCursorId>,
pub limit: Option<u16>,
pub exclude_archived: Option<bool>,
pub types: Option<Vec<SlackConversationType>>,
pub user: Option<SlackUserId>,
}
Fields§
§cursor: Option<SlackCursorId>
§limit: Option<u16>
§exclude_archived: Option<bool>
§types: Option<Vec<SlackConversationType>>
§user: Option<SlackUserId>
Implementations§
Source§impl SlackApiUsersConversationsRequest
impl SlackApiUsersConversationsRequest
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 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 exclude_archived(&mut self, value: bool) -> &mut Self
pub fn reset_exclude_archived(&mut self) -> &mut Self
pub fn mopt_exclude_archived(&mut self, value: Option<bool>) -> &mut Self
pub fn with_exclude_archived(self, value: bool) -> Self
pub fn without_exclude_archived(self) -> Self
pub fn opt_exclude_archived(self, value: Option<bool>) -> Self
pub fn types(&mut self, value: Vec<SlackConversationType>) -> &mut Self
pub fn reset_types(&mut self) -> &mut Self
pub fn mopt_types( &mut self, value: Option<Vec<SlackConversationType>>, ) -> &mut Self
pub fn with_types(self, value: Vec<SlackConversationType>) -> Self
pub fn without_types(self) -> Self
pub fn opt_types(self, value: Option<Vec<SlackConversationType>>) -> Self
pub fn user(&mut self, value: SlackUserId) -> &mut Self
pub fn reset_user(&mut self) -> &mut Self
pub fn mopt_user(&mut self, value: Option<SlackUserId>) -> &mut Self
pub fn with_user(self, value: SlackUserId) -> Self
pub fn without_user(self) -> Self
pub fn opt_user(self, value: Option<SlackUserId>) -> Self
Trait Implementations§
Source§impl Clone for SlackApiUsersConversationsRequest
impl Clone for SlackApiUsersConversationsRequest
Source§fn clone(&self) -> SlackApiUsersConversationsRequest
fn clone(&self) -> SlackApiUsersConversationsRequest
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<'de> Deserialize<'de> for SlackApiUsersConversationsRequest
impl<'de> Deserialize<'de> for SlackApiUsersConversationsRequest
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<SlackApiUsersConversationsRequestInit> for SlackApiUsersConversationsRequest
impl From<SlackApiUsersConversationsRequestInit> for SlackApiUsersConversationsRequest
Source§fn from(value: SlackApiUsersConversationsRequestInit) -> Self
fn from(value: SlackApiUsersConversationsRequestInit) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SlackApiUsersConversationsRequest
impl PartialEq for SlackApiUsersConversationsRequest
Source§fn eq(&self, other: &SlackApiUsersConversationsRequest) -> bool
fn eq(&self, other: &SlackApiUsersConversationsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiUsersConversationsRequest
impl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiUsersConversationsRequest
type ResponseType = SlackApiUsersConversationsResponse
type CursorType = SlackCursorId
type ResponseItemType = SlackChannelInfo
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 SlackApiUsersConversationsRequest
Auto Trait Implementations§
impl Freeze for SlackApiUsersConversationsRequest
impl RefUnwindSafe for SlackApiUsersConversationsRequest
impl Send for SlackApiUsersConversationsRequest
impl Sync for SlackApiUsersConversationsRequest
impl Unpin for SlackApiUsersConversationsRequest
impl UnwindSafe for SlackApiUsersConversationsRequest
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
)