Struct slack_blocks::blocks::Context [−][src]
pub struct Context<'a> { /* fields omitted */ }Expand description
Implementations
impl<'a> Context<'a>[src]
impl<'a> Context<'a>[src]pub fn builder() -> ContextBuilderInit<'a>[src]
pub fn builder() -> ContextBuilderInit<'a>[src]Build a new Context block.
For example, see docs for ContextBuilder.
pub fn validate(&self) -> Result<(), ValidationErrors>[src]
pub fn validate(&self) -> Result<(), ValidationErrors>[src]Validate that this Context block agrees with Slack’s model requirements
Errors
- If
with_block_idwas called with a block id longer than 255 chars - If
from_elements,from_context_elements, orwith_elementwas called with more than 10 objects
Example
use slack_blocks::{blocks::Context, text::ToSlackPlaintext}; let long_string = std::iter::repeat(' ').take(256).collect::<String>(); let block = Context::builder().element("foo".plaintext()) .block_id(long_string) .build(); assert_eq!(true, matches!(block.validate(), Err(_)));
Trait Implementations
impl<'de, 'a> Deserialize<'de> for Context<'a>[src]
impl<'de, 'a> Deserialize<'de> for Context<'a>[src]fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
impl<'a> From<Vec<ImageOrText<'a>, Global>> for Context<'a>[src]
impl<'a> From<Vec<ImageOrText<'a>, Global>> for Context<'a>[src]fn from(elements: Vec<ImageOrText<'a>>) -> Self[src]
fn from(elements: Vec<ImageOrText<'a>>) -> Self[src]Performs the conversion.
impl<'a> StructuralPartialEq for Context<'a>[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for Context<'a>
impl<'a> Send for Context<'a>
impl<'a> Sync for Context<'a>
impl<'a> Unpin for Context<'a>
impl<'a> UnwindSafe for Context<'a>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,