pub struct SlackApiChatScheduledMessagesListRequest {
pub channel: Option<SlackChannelId>,
pub cursor: Option<SlackCursorId>,
pub latest: Option<SlackTs>,
pub limit: Option<u16>,
pub oldest: Option<SlackTs>,
}
Fields§
§channel: Option<SlackChannelId>
§cursor: Option<SlackCursorId>
§latest: Option<SlackTs>
§limit: Option<u16>
§oldest: Option<SlackTs>
Implementations§
Source§impl SlackApiChatScheduledMessagesListRequest
impl SlackApiChatScheduledMessagesListRequest
pub fn new() -> Self
pub fn channel(&mut self, value: SlackChannelId) -> &mut Self
pub fn reset_channel(&mut self) -> &mut Self
pub fn mopt_channel(&mut self, value: Option<SlackChannelId>) -> &mut Self
pub fn with_channel(self, value: SlackChannelId) -> Self
pub fn without_channel(self) -> Self
pub fn opt_channel(self, value: Option<SlackChannelId>) -> 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 latest(&mut self, value: SlackTs) -> &mut Self
pub fn reset_latest(&mut self) -> &mut Self
pub fn mopt_latest(&mut self, value: Option<SlackTs>) -> &mut Self
pub fn with_latest(self, value: SlackTs) -> Self
pub fn without_latest(self) -> Self
pub fn opt_latest(self, value: Option<SlackTs>) -> 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 oldest(&mut self, value: SlackTs) -> &mut Self
pub fn reset_oldest(&mut self) -> &mut Self
pub fn mopt_oldest(&mut self, value: Option<SlackTs>) -> &mut Self
pub fn with_oldest(self, value: SlackTs) -> Self
pub fn without_oldest(self) -> Self
pub fn opt_oldest(self, value: Option<SlackTs>) -> Self
Trait Implementations§
Source§impl Clone for SlackApiChatScheduledMessagesListRequest
impl Clone for SlackApiChatScheduledMessagesListRequest
Source§fn clone(&self) -> SlackApiChatScheduledMessagesListRequest
fn clone(&self) -> SlackApiChatScheduledMessagesListRequest
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 SlackApiChatScheduledMessagesListRequest
impl<'de> Deserialize<'de> for SlackApiChatScheduledMessagesListRequest
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<SlackApiChatScheduledMessagesListRequestInit> for SlackApiChatScheduledMessagesListRequest
impl From<SlackApiChatScheduledMessagesListRequestInit> for SlackApiChatScheduledMessagesListRequest
Source§fn from(value: SlackApiChatScheduledMessagesListRequestInit) -> Self
fn from(value: SlackApiChatScheduledMessagesListRequestInit) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SlackApiChatScheduledMessagesListRequest
impl PartialEq for SlackApiChatScheduledMessagesListRequest
Source§fn eq(&self, other: &SlackApiChatScheduledMessagesListRequest) -> bool
fn eq(&self, other: &SlackApiChatScheduledMessagesListRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiChatScheduledMessagesListRequest
impl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiChatScheduledMessagesListRequest
type ResponseType = SlackApiChatScheduledMessagesListResponse
type CursorType = SlackCursorId
type ResponseItemType = SlackApiChatScheduledMessageInfo
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 SlackApiChatScheduledMessagesListRequest
Auto Trait Implementations§
impl Freeze for SlackApiChatScheduledMessagesListRequest
impl RefUnwindSafe for SlackApiChatScheduledMessagesListRequest
impl Send for SlackApiChatScheduledMessagesListRequest
impl Sync for SlackApiChatScheduledMessagesListRequest
impl Unpin for SlackApiChatScheduledMessagesListRequest
impl UnwindSafe for SlackApiChatScheduledMessagesListRequest
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
)