[][src]Struct slack_blocks::compose::conversation_filter::ConversationFilter

pub struct ConversationFilter { /* fields omitted */ }

Implementations

impl ConversationFilter[src]

pub fn new() -> Self[src]

Create a Conversation Filter object that allows bot users & all kinds of channels; including cross-org shared channels.

Example

use slack_blocks::compose::ConversationFilter;

let filter = ConversationFilter::new();
// TODO: once conversationselect is implemented
// let select = ConversationSelect::from_filter(filter);

pub fn include_conversation_kinds(
    self,
    kinds: impl IntoIterator<Item = ConversationKind>
) -> Self
[src]

Chainable setter method that allows you to restrict the kinds of channels that will appear in the conversation select menu.

For excluding cross-org shared channels, see exclude_external_shared_channels.

For excluding DMs with bots, see exclude_bot_users.

Arguments

  • kinds - A non-empty unique collection of ConversationKinds, that the select options will be restricted to.

Example

use slack_blocks::compose::ConversationFilter;
use slack_blocks::compose::conversation_filter::ConversationKind;

let filter = ConversationFilter::new()
    .include_conversation_kinds(vec![
        ConversationKind::PublicChannel,
    ]);

// TODO: once conversationselect is implemented
// let select = ConversationSelect::from_filter(filter);

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

Chainable setter method that allows cross-org shared channels to appear in the conversation select menu.

Note that this setting is the default, and that calling this method is a no-op. It exists purely as declarative sugar for filter construction.

For excluding cross-org shared channels, see exclude_external_shared_channels.

Example

use slack_blocks::compose::ConversationFilter;

let filter = ConversationFilter::new()
    .include_external_shared_channels();

// TODO: once conversationselect is implemented
// let select = ConversationSelect::from_filter(filter);

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

Chainable setter method that prevents cross-workspace shared channels from appearing in the conversation select menu.

Example

use slack_blocks::compose::ConversationFilter;

let filter = ConversationFilter::new()
    .exclude_external_shared_channels();

// TODO: once conversationselect is implemented
// let select = ConversationSelect::from_filter(filter);

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

Chainable setter method that allows conversations with Bot Users to appear in the conversation select menu.

Note that this setting is the default, and that calling this method is a no-op. It exists purely as declarative sugar for filter construction.

For excluding bot user DMs, see exclude_bot_users.

Example

use slack_blocks::compose::ConversationFilter;

let filter = ConversationFilter::new()
    .include_bot_users();

// TODO: once conversationselect is implemented
// let select = ConversationSelect::from_filter(filter);

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

Chainable setter method that prevents DMs with Bot users from appearing in the conversation select menu.

Example

use slack_blocks::compose::ConversationFilter;

let filter = ConversationFilter::new()
    .exclude_bot_users();

// TODO: once conversationselect is implemented
// let select = ConversationSelect::from_filter(filter);

pub fn validate(&self) -> Result<(), ValidationErrors>[src]

Validate that this Conversation Filter object agrees with Slack's model requirements

Errors

  • If include_conversation_kinds was called with an empty collection

Example

use slack_blocks::compose::ConversationFilter;

let filter = ConversationFilter::new()
    .include_conversation_kinds(vec![]);

assert_eq!(true, matches!(filter.validate(), Err(_)));

Trait Implementations

impl Clone for ConversationFilter[src]

impl Debug for ConversationFilter[src]

impl Default for ConversationFilter[src]

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

impl Hash for ConversationFilter[src]

impl PartialEq<ConversationFilter> for ConversationFilter[src]

impl Serialize for ConversationFilter[src]

impl StructuralPartialEq for ConversationFilter[src]

impl Validate for ConversationFilter[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.