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<SlackApiConversationsRepliesRequest> for SlackApiConversationsRepliesRequest
impl PartialEq<SlackApiConversationsRepliesRequest> for SlackApiConversationsRepliesRequest
source§fn eq(&self, other: &SlackApiConversationsRepliesRequest) -> bool
fn eq(&self, other: &SlackApiConversationsRepliesRequest) -> bool
This method tests for
self and other values to be equal, and is used
by ==.