pub struct RichBlockBlockQuotation {
pub blocks: Vec<RichBlock>,
pub credit: Option<RichText>,
}Expand description
A block quotation (<blockquote>).
Fields§
§blocks: Vec<RichBlock>Nested block content.
credit: Option<RichText>Optional attribution credit.
Trait Implementations§
Source§impl Clone for RichBlockBlockQuotation
impl Clone for RichBlockBlockQuotation
Source§fn clone(&self) -> RichBlockBlockQuotation
fn clone(&self) -> RichBlockBlockQuotation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RichBlockBlockQuotation
impl Debug for RichBlockBlockQuotation
Source§impl<'de> Deserialize<'de> for RichBlockBlockQuotation
impl<'de> Deserialize<'de> for RichBlockBlockQuotation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RichBlockBlockQuotation
impl RefUnwindSafe for RichBlockBlockQuotation
impl Send for RichBlockBlockQuotation
impl Sync for RichBlockBlockQuotation
impl Unpin for RichBlockBlockQuotation
impl UnsafeUnpin for RichBlockBlockQuotation
impl UnwindSafe for RichBlockBlockQuotation
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