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>,
}Fields§
§channel: Option<SlackChannelId>§cursor: Option<SlackCursorId>§latest: Option<SlackTs>§limit: Option<u16>§oldest: Option<SlackTs>§inclusive: 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
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<SlackApiConversationsHistoryRequest> for SlackApiConversationsHistoryRequest
impl PartialEq<SlackApiConversationsHistoryRequest> for SlackApiConversationsHistoryRequest
source§fn eq(&self, other: &SlackApiConversationsHistoryRequest) -> bool
fn eq(&self, other: &SlackApiConversationsHistoryRequest) -> bool
This method tests for
self and other values to be equal, and is used
by ==.