pub struct SlackApiConversationsListRequest {
    pub cursor: Option<SlackCursorId>,
    pub limit: Option<u16>,
    pub exclude_archived: Option<bool>,
    pub types: Option<Vec<SlackConversationType>>,
}

Fields§

§cursor: Option<SlackCursorId>§limit: Option<u16>§exclude_archived: Option<bool>§types: Option<Vec<SlackConversationType>>

Implementations§

source§

impl SlackApiConversationsListRequest

source

pub fn new() -> Self

source

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

source

pub fn reset_cursor(&mut self) -> &mut Self

source

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

source

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

source

pub fn without_cursor(self) -> Self

source

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

source

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

source

pub fn reset_limit(&mut self) -> &mut Self

source

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

source

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

source

pub fn without_limit(self) -> Self

source

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

source

pub fn exclude_archived(&mut self, value: bool) -> &mut Self

source

pub fn reset_exclude_archived(&mut self) -> &mut Self

source

pub fn mopt_exclude_archived(&mut self, value: Option<bool>) -> &mut Self

source

pub fn with_exclude_archived(self, value: bool) -> Self

source

pub fn without_exclude_archived(self) -> Self

source

pub fn opt_exclude_archived(self, value: Option<bool>) -> Self

source

pub fn types(&mut self, value: Vec<SlackConversationType>) -> &mut Self

source

pub fn reset_types(&mut self) -> &mut Self

source

pub fn mopt_types( &mut self, value: Option<Vec<SlackConversationType>> ) -> &mut Self

source

pub fn with_types(self, value: Vec<SlackConversationType>) -> Self

source

pub fn without_types(self) -> Self

source

pub fn opt_types(self, value: Option<Vec<SlackConversationType>>) -> Self

Trait Implementations§

source§

impl Clone for SlackApiConversationsListRequest

source§

fn clone(&self) -> SlackApiConversationsListRequest

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SlackApiConversationsListRequest

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for SlackApiConversationsListRequest

source§

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<SlackApiConversationsListRequestInit> for SlackApiConversationsListRequest

source§

fn from(value: SlackApiConversationsListRequestInit) -> Self

Converts to this type from the input type.
source§

impl PartialEq for SlackApiConversationsListRequest

source§

fn eq(&self, other: &SlackApiConversationsListRequest) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for SlackApiConversationsListRequest

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<SCHC> SlackApiScrollableRequest<SCHC> for SlackApiConversationsListRequest
where SCHC: SlackClientHttpConnector + Send + Sync + Clone + 'static,

§

type ResponseType = SlackApiConversationsListResponse

§

type CursorType = SlackCursorId

§

type ResponseItemType = SlackChannelInfo

source§

fn with_new_cursor(&self, new_cursor: Option<&Self::CursorType>) -> Self

source§

fn scroll<'a, 's>( &'a self, session: &'a SlackClientSession<'s, SCHC> ) -> BoxFuture<'a, ClientResult<Self::ResponseType>>

source§

impl StructuralPartialEq for SlackApiConversationsListRequest

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

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