pub struct RichTextQuote {
pub elements: Vec<RichTextElement>,
pub border: Option<u64>,
}Expand description
Quote element: rich_text_quote.
https://api.slack.com/reference/block-kit/blocks#rich_text_quote
Fields§
§elements: Vec<RichTextElement>An array of rich text elements.
border: Option<u64>Number of pixels of border thickness.
Trait Implementations§
Source§impl Clone for RichTextQuote
impl Clone for RichTextQuote
Source§fn clone(&self) -> RichTextQuote
fn clone(&self) -> RichTextQuote
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RichTextQuote
impl Debug for RichTextQuote
Auto Trait Implementations§
impl Freeze for RichTextQuote
impl RefUnwindSafe for RichTextQuote
impl Send for RichTextQuote
impl Sync for RichTextQuote
impl Unpin for RichTextQuote
impl UnwindSafe for RichTextQuote
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more