[−][src]Struct slack_blocks::blocks::context::Contents
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]
elements: Els
) -> Self
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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl From<Contents> for Block[src]
impl From<Vec<Compose>> for Contents[src]
impl Hash for Contents[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<Contents> for Contents[src]
impl Serialize for Contents[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralPartialEq for Contents[src]
impl Validate for Contents[src]
fn validate(&self) -> Result<(), ValidationErrors>[src]
Auto Trait Implementations
impl RefUnwindSafe for Contents
impl Send for Contents
impl Sync for Contents
impl Unpin for Contents
impl UnwindSafe for Contents
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,