[][src]Struct slack_morphism::api::SlackApiChatScheduledMessagesListRequest

pub struct SlackApiChatScheduledMessagesListRequest {
    pub channel: Option<SlackChannelId>,
    pub cursor: Option<SlackCursorId>,
    pub latest: Option<SlackTs>,
    pub limit: Option<u16>,
    pub oldest: Option<SlackTs>,
}

Fields

channel: Option<SlackChannelId>cursor: Option<SlackCursorId>latest: Option<SlackTs>limit: Option<u16>oldest: Option<SlackTs>

Implementations

impl SlackApiChatScheduledMessagesListRequest[src]

pub fn new() -> Self[src]

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

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

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

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

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

pub fn opt_channel(self, value: Option<SlackChannelId>) -> 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]

Trait Implementations

impl Clone for SlackApiChatScheduledMessagesListRequest[src]

impl Debug for SlackApiChatScheduledMessagesListRequest[src]

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

impl From<SlackApiChatScheduledMessagesListRequestInit> for SlackApiChatScheduledMessagesListRequest[src]

impl PartialEq<SlackApiChatScheduledMessagesListRequest> for SlackApiChatScheduledMessagesListRequest[src]

impl Serialize for SlackApiChatScheduledMessagesListRequest[src]

impl SlackApiScrollableRequest for SlackApiChatScheduledMessagesListRequest[src]

type ResponseType = SlackApiChatScheduledMessagesListResponse

type CursorType = SlackCursorId

type ResponseItemType = SlackApiChatScheduledMessageInfo

impl StructuralPartialEq for SlackApiChatScheduledMessagesListRequest[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> Instrument 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.