pub struct SlackApiConversationsRepliesRequest {
pub channel: SlackChannelId,
pub ts: SlackTs,
pub cursor: Option<SlackCursorId>,
pub latest: Option<SlackTs>,
pub limit: Option<u16>,
pub oldest: Option<SlackTs>,
pub inclusive: Option<bool>,
}
Fields§
§channel: SlackChannelId
§ts: SlackTs
§cursor: Option<SlackCursorId>
§latest: Option<SlackTs>
§limit: Option<u16>
§oldest: Option<SlackTs>
§inclusive: Option<bool>
Implementations§
Source§impl SlackApiConversationsRepliesRequest
impl SlackApiConversationsRepliesRequest
pub fn new(channel: SlackChannelId, ts: SlackTs) -> Self
pub fn channel(&mut self, value: SlackChannelId) -> &mut Self
pub fn with_channel(self, value: SlackChannelId) -> Self
pub fn ts(&mut self, value: SlackTs) -> &mut Self
pub fn with_ts(self, value: SlackTs) -> 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
pub fn inclusive(&mut self, value: bool) -> &mut Self
pub fn reset_inclusive(&mut self) -> &mut Self
pub fn mopt_inclusive(&mut self, value: Option<bool>) -> &mut Self
pub fn with_inclusive(self, value: bool) -> Self
pub fn without_inclusive(self) -> Self
pub fn opt_inclusive(self, value: Option<bool>) -> Self
Trait Implementations§
Source§impl Clone for SlackApiConversationsRepliesRequest
impl Clone for SlackApiConversationsRepliesRequest
Source§fn clone(&self) -> SlackApiConversationsRepliesRequest
fn clone(&self) -> SlackApiConversationsRepliesRequest
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 SlackApiConversationsRepliesRequest
impl<'de> Deserialize<'de> for SlackApiConversationsRepliesRequest
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<SlackApiConversationsRepliesRequestInit> for SlackApiConversationsRepliesRequest
impl From<SlackApiConversationsRepliesRequestInit> for SlackApiConversationsRepliesRequest
Source§fn from(value: SlackApiConversationsRepliesRequestInit) -> Self
fn from(value: SlackApiConversationsRepliesRequestInit) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SlackApiConversationsRepliesRequest
impl PartialEq for SlackApiConversationsRepliesRequest
Source§fn eq(&self, other: &SlackApiConversationsRepliesRequest) -> bool
fn eq(&self, other: &SlackApiConversationsRepliesRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiConversationsRepliesRequest
impl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiConversationsRepliesRequest
type ResponseType = SlackApiConversationsRepliesResponse
type CursorType = SlackCursorId
type ResponseItemType = SlackHistoryMessage
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 SlackApiConversationsRepliesRequest
Auto Trait Implementations§
impl Freeze for SlackApiConversationsRepliesRequest
impl RefUnwindSafe for SlackApiConversationsRepliesRequest
impl Send for SlackApiConversationsRepliesRequest
impl Sync for SlackApiConversationsRepliesRequest
impl Unpin for SlackApiConversationsRepliesRequest
impl UnwindSafe for SlackApiConversationsRepliesRequest
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
)