[][src]Struct slack_blocks::blocks::context::Contents

pub struct Contents { /* fields omitted */ }

Context Block

slack api docs 🔗

Displays message context, which can include both images and text.

Implementations

impl Contents[src]

pub fn new() -> Self[src]

Construct a new empty Context block (uses Default)

pub fn with_block_id<StrIsh: AsRef<str>>(self, block_id: StrIsh) -> Self[src]

Set the block_id for interactions on an existing context::Contents

use slack_blocks::blocks::{Block, context};

pub fn main() {
    let context = context::Contents::new().with_block_id("tally_ho");
    let block: Block = context.into();
    // < send block to slack's API >
}

pub fn from_elements<Els: IntoIterator<Item = impl Into<Compose>>>(
    elements: Els
) -> Self
[src]

Construct a new context::Contents from a bunch of composition objects

use slack_blocks::blocks::{Block, context};
use slack_blocks::compose;

pub fn main() {
    let text = compose::Text::markdown("*s i c k*");
    let context = context::Contents::from_elements(vec![text]);
    let block: Block = context.into();
    // < send block to slack's API >
}

pub fn validate(&self) -> ValidationResult[src]

Validate that the model agrees with slack's validation requirements

Trait Implementations

impl Clone for Contents[src]

impl Debug for Contents[src]

impl Default for Contents[src]

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

impl From<Contents> for Block[src]

impl From<Vec<Compose>> for Contents[src]

impl Hash for Contents[src]

impl PartialEq<Contents> for Contents[src]

impl Serialize for Contents[src]

impl StructuralPartialEq for Contents[src]

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