[][src]Struct slack_morphism::api::SlackApiConversationsRepliesRequest

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: SlackChannelIdts: SlackTscursor: Option<SlackCursorId>latest: Option<SlackTs>limit: Option<u16>oldest: Option<SlackTs>inclusive: Option<bool>

Implementations

impl SlackApiConversationsRepliesRequest[src]

pub fn new(channel: SlackChannelId, ts: SlackTs) -> Self[src]

pub fn channel(&mut self, value: SlackChannelId) -> &mut Self[src]

pub fn with_channel(self, value: SlackChannelId) -> Self[src]

pub fn ts(&mut self, value: SlackTs) -> &mut Self[src]

pub fn with_ts(self, value: SlackTs) -> Self[src]

pub fn cursor(&mut self, value: SlackCursorId) -> &mut Self[src]

pub fn reset_cursor(&mut self) -> &mut Self[src]

pub fn mopt_cursor(&mut self, value: Option<SlackCursorId>) -> &mut Self[src]

pub fn with_cursor(self, value: SlackCursorId) -> Self[src]

pub fn without_cursor(self) -> Self[src]

pub fn opt_cursor(self, value: Option<SlackCursorId>) -> Self[src]

pub fn latest(&mut self, value: SlackTs) -> &mut Self[src]

pub fn reset_latest(&mut self) -> &mut Self[src]

pub fn mopt_latest(&mut self, value: Option<SlackTs>) -> &mut Self[src]

pub fn with_latest(self, value: SlackTs) -> Self[src]

pub fn without_latest(self) -> Self[src]

pub fn opt_latest(self, value: Option<SlackTs>) -> Self[src]

pub fn limit(&mut self, value: u16) -> &mut Self[src]

pub fn reset_limit(&mut self) -> &mut Self[src]

pub fn mopt_limit(&mut self, value: Option<u16>) -> &mut Self[src]

pub fn with_limit(self, value: u16) -> Self[src]

pub fn without_limit(self) -> Self[src]

pub fn opt_limit(self, value: Option<u16>) -> Self[src]

pub fn oldest(&mut self, value: SlackTs) -> &mut Self[src]

pub fn reset_oldest(&mut self) -> &mut Self[src]

pub fn mopt_oldest(&mut self, value: Option<SlackTs>) -> &mut Self[src]

pub fn with_oldest(self, value: SlackTs) -> Self[src]

pub fn without_oldest(self) -> Self[src]

pub fn opt_oldest(self, value: Option<SlackTs>) -> Self[src]

pub fn inclusive(&mut self, value: bool) -> &mut Self[src]

pub fn reset_inclusive(&mut self) -> &mut Self[src]

pub fn mopt_inclusive(&mut self, value: Option<bool>) -> &mut Self[src]

pub fn with_inclusive(self, value: bool) -> Self[src]

pub fn without_inclusive(self) -> Self[src]

pub fn opt_inclusive(self, value: Option<bool>) -> Self[src]

Trait Implementations

impl Clone for SlackApiConversationsRepliesRequest[src]

impl Debug for SlackApiConversationsRepliesRequest[src]

impl<'de> Deserialize<'de> for SlackApiConversationsRepliesRequest[src]

impl From<SlackApiConversationsRepliesRequestInit> for SlackApiConversationsRepliesRequest[src]

impl PartialEq<SlackApiConversationsRepliesRequest> for SlackApiConversationsRepliesRequest[src]

impl Serialize for SlackApiConversationsRepliesRequest[src]

impl SlackApiScrollableRequest for SlackApiConversationsRepliesRequest[src]

type ResponseType = SlackApiConversationsRepliesResponse

type CursorType = SlackCursorId

type ResponseItemType = SlackHistoryMessage

impl StructuralPartialEq for SlackApiConversationsRepliesRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.