pub struct SlackApiConversationsHistoryRequest {
pub channel: Option<SlackChannelId>,
pub cursor: Option<SlackCursorId>,
pub latest: Option<SlackTs>,
pub limit: Option<u16>,
pub oldest: Option<SlackTs>,
pub inclusive: Option<bool>,
pub include_all_metadata: Option<bool>,
}
Fields§
§channel: Option<SlackChannelId>
§cursor: Option<SlackCursorId>
§latest: Option<SlackTs>
§limit: Option<u16>
§oldest: Option<SlackTs>
§inclusive: Option<bool>
§include_all_metadata: Option<bool>
Implementations§
Source§impl SlackApiConversationsHistoryRequest
impl SlackApiConversationsHistoryRequest
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
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
pub fn include_all_metadata(&mut self, value: bool) -> &mut Self
pub fn reset_include_all_metadata(&mut self) -> &mut Self
pub fn mopt_include_all_metadata(&mut self, value: Option<bool>) -> &mut Self
pub fn with_include_all_metadata(self, value: bool) -> Self
pub fn without_include_all_metadata(self) -> Self
pub fn opt_include_all_metadata(self, value: Option<bool>) -> Self
Trait Implementations§
Source§impl Clone for SlackApiConversationsHistoryRequest
impl Clone for SlackApiConversationsHistoryRequest
Source§fn clone(&self) -> SlackApiConversationsHistoryRequest
fn clone(&self) -> SlackApiConversationsHistoryRequest
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 SlackApiConversationsHistoryRequest
impl<'de> Deserialize<'de> for SlackApiConversationsHistoryRequest
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<SlackApiConversationsHistoryRequestInit> for SlackApiConversationsHistoryRequest
impl From<SlackApiConversationsHistoryRequestInit> for SlackApiConversationsHistoryRequest
Source§fn from(value: SlackApiConversationsHistoryRequestInit) -> Self
fn from(value: SlackApiConversationsHistoryRequestInit) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SlackApiConversationsHistoryRequest
impl PartialEq for SlackApiConversationsHistoryRequest
Source§fn eq(&self, other: &SlackApiConversationsHistoryRequest) -> bool
fn eq(&self, other: &SlackApiConversationsHistoryRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiConversationsHistoryRequest
impl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiConversationsHistoryRequest
type ResponseType = SlackApiConversationsHistoryResponse
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 SlackApiConversationsHistoryRequest
Auto Trait Implementations§
impl Freeze for SlackApiConversationsHistoryRequest
impl RefUnwindSafe for SlackApiConversationsHistoryRequest
impl Send for SlackApiConversationsHistoryRequest
impl Sync for SlackApiConversationsHistoryRequest
impl Unpin for SlackApiConversationsHistoryRequest
impl UnwindSafe for SlackApiConversationsHistoryRequest
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
)