pub struct SlackApiConversationsListRequest {
pub cursor: Option<SlackCursorId>,
pub limit: Option<u16>,
pub exclude_archived: Option<bool>,
pub types: Option<Vec<SlackConversationType>>,
}
Fields§
§cursor: Option<SlackCursorId>
§limit: Option<u16>
§exclude_archived: Option<bool>
§types: Option<Vec<SlackConversationType>>
Implementations§
Source§impl SlackApiConversationsListRequest
impl SlackApiConversationsListRequest
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
Trait Implementations§
Source§impl Clone for SlackApiConversationsListRequest
impl Clone for SlackApiConversationsListRequest
Source§fn clone(&self) -> SlackApiConversationsListRequest
fn clone(&self) -> SlackApiConversationsListRequest
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 SlackApiConversationsListRequest
impl<'de> Deserialize<'de> for SlackApiConversationsListRequest
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<SlackApiConversationsListRequestInit> for SlackApiConversationsListRequest
impl From<SlackApiConversationsListRequestInit> for SlackApiConversationsListRequest
Source§fn from(value: SlackApiConversationsListRequestInit) -> Self
fn from(value: SlackApiConversationsListRequestInit) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SlackApiConversationsListRequest
impl PartialEq for SlackApiConversationsListRequest
Source§fn eq(&self, other: &SlackApiConversationsListRequest) -> bool
fn eq(&self, other: &SlackApiConversationsListRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiConversationsListRequest
impl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiConversationsListRequest
type ResponseType = SlackApiConversationsListResponse
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 SlackApiConversationsListRequest
Auto Trait Implementations§
impl Freeze for SlackApiConversationsListRequest
impl RefUnwindSafe for SlackApiConversationsListRequest
impl Send for SlackApiConversationsListRequest
impl Sync for SlackApiConversationsListRequest
impl Unpin for SlackApiConversationsListRequest
impl UnwindSafe for SlackApiConversationsListRequest
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
)