Struct slack_blocks::elems::overflow::Overflow[][src]

pub struct Overflow<'a> { /* fields omitted */ }
Expand description

Overflow Menu

This is like a cross between a button and a select menu - when a user clicks on this overflow button, they will be presented with a list of options to choose from.

Unlike the select menu, there is no typeahead field, and the button always appears with an ellipsis (“…”), rather than customisable text.

slack api docs 🔗

Works in blocks 🔗: Section, Actions

Implementations

Construct a new Overflow Menu.

Example

See example of build::OverflowBuilder

This is supported on crate feature validation only.

Validate that this select element agrees with Slack’s model requirements

Errors

  • length of action_id greater than 255
  • length of options less than 2 or greater than 5
  • one or more of options is invalid (TODO)
  • confirm is set and an invalid Confirm

Example

use slack_blocks::{compose::Opt, elems::Overflow};

fn repeat<T: Copy>(el: T, n: usize) -> impl Iterator<Item = T> {
  std::iter::repeat(el).take(n)
}

let long_string: String = repeat('a', 256).collect();

let opt = Opt::builder().text_plain("foo")
                        .value("bar")
                        .no_url()
                        .build();

let opts: Vec<Opt<_, _>> = repeat(&opt, 6).map(|o| o.clone()).collect();

let input = Overflow::builder().action_id(long_string) // invalid
                               .options(opts) // also invalid
                               .build();

assert!(matches!(input.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

Deserialize this value from the given Serde deserializer. Read more

Performs the conversion.

Performs the conversion.

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.