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

pub struct ConversationFilter { /* fields omitted */ }
Expand description

Implementations

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);

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);

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);

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);

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

This is the default behavior.

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);

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);
This is supported on crate feature validation only.

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

This type has runtime checks that prevent it from failing validation.

Errors

  • Never

Example

use slack_blocks::compose::ConversationFilter;

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

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

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

This is supported on crate feature blox only.

Identity function

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.