pub enum SubBlockQuote {
Attribution(Box<Attribution>),
BodyElement(Box<BodyElement>),
}
Variants§
Attribution(Box<Attribution>)
BodyElement(Box<BodyElement>)
Trait Implementations§
Source§impl Clone for SubBlockQuote
impl Clone for SubBlockQuote
Source§fn clone(&self) -> SubBlockQuote
fn clone(&self) -> SubBlockQuote
Returns a copy 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 SubBlockQuote
impl Debug for SubBlockQuote
Source§impl From<Admonition> for SubBlockQuote
impl From<Admonition> for SubBlockQuote
Source§fn from(inner: Admonition) -> Self
fn from(inner: Admonition) -> Self
Converts to this type from the input type.
Source§impl From<Attention> for SubBlockQuote
impl From<Attention> for SubBlockQuote
Source§impl From<Attribution> for SubBlockQuote
impl From<Attribution> for SubBlockQuote
Source§fn from(inner: Attribution) -> Self
fn from(inner: Attribution) -> Self
Converts to this type from the input type.
Source§impl From<BlockQuote> for SubBlockQuote
impl From<BlockQuote> for SubBlockQuote
Source§fn from(inner: BlockQuote) -> Self
fn from(inner: BlockQuote) -> Self
Converts to this type from the input type.
Source§impl From<BodyElement> for SubBlockQuote
impl From<BodyElement> for SubBlockQuote
Source§fn from(inner: BodyElement) -> Self
fn from(inner: BodyElement) -> Self
Converts to this type from the input type.
Source§impl From<BulletList> for SubBlockQuote
impl From<BulletList> for SubBlockQuote
Source§fn from(inner: BulletList) -> Self
fn from(inner: BulletList) -> Self
Converts to this type from the input type.
Source§impl From<Caution> for SubBlockQuote
impl From<Caution> for SubBlockQuote
Source§impl From<Citation> for SubBlockQuote
impl From<Citation> for SubBlockQuote
Source§impl From<Comment> for SubBlockQuote
impl From<Comment> for SubBlockQuote
Source§impl From<Compound> for SubBlockQuote
impl From<Compound> for SubBlockQuote
Source§impl From<Container> for SubBlockQuote
impl From<Container> for SubBlockQuote
Source§impl From<Danger> for SubBlockQuote
impl From<Danger> for SubBlockQuote
Source§impl From<DefinitionList> for SubBlockQuote
impl From<DefinitionList> for SubBlockQuote
Source§fn from(inner: DefinitionList) -> Self
fn from(inner: DefinitionList) -> Self
Converts to this type from the input type.
Source§impl From<DoctestBlock> for SubBlockQuote
impl From<DoctestBlock> for SubBlockQuote
Source§fn from(inner: DoctestBlock) -> Self
fn from(inner: DoctestBlock) -> Self
Converts to this type from the input type.
Source§impl From<EnumeratedList> for SubBlockQuote
impl From<EnumeratedList> for SubBlockQuote
Source§fn from(inner: EnumeratedList) -> Self
fn from(inner: EnumeratedList) -> Self
Converts to this type from the input type.
Source§impl From<Error> for SubBlockQuote
impl From<Error> for SubBlockQuote
Source§impl From<FieldList> for SubBlockQuote
impl From<FieldList> for SubBlockQuote
Source§impl From<Figure> for SubBlockQuote
impl From<Figure> for SubBlockQuote
Source§impl From<Footnote> for SubBlockQuote
impl From<Footnote> for SubBlockQuote
Source§impl From<Hint> for SubBlockQuote
impl From<Hint> for SubBlockQuote
Source§impl From<Image> for SubBlockQuote
impl From<Image> for SubBlockQuote
Source§impl From<Important> for SubBlockQuote
impl From<Important> for SubBlockQuote
Source§impl From<LineBlock> for SubBlockQuote
impl From<LineBlock> for SubBlockQuote
Source§impl From<LiteralBlock> for SubBlockQuote
impl From<LiteralBlock> for SubBlockQuote
Source§fn from(inner: LiteralBlock) -> Self
fn from(inner: LiteralBlock) -> Self
Converts to this type from the input type.
Source§impl From<MathBlock> for SubBlockQuote
impl From<MathBlock> for SubBlockQuote
Source§impl From<Note> for SubBlockQuote
impl From<Note> for SubBlockQuote
Source§impl From<OptionList> for SubBlockQuote
impl From<OptionList> for SubBlockQuote
Source§fn from(inner: OptionList) -> Self
fn from(inner: OptionList) -> Self
Converts to this type from the input type.
Source§impl From<Paragraph> for SubBlockQuote
impl From<Paragraph> for SubBlockQuote
Source§impl From<Pending> for SubBlockQuote
impl From<Pending> for SubBlockQuote
Source§impl From<Raw> for SubBlockQuote
impl From<Raw> for SubBlockQuote
Source§impl From<Rubric> for SubBlockQuote
impl From<Rubric> for SubBlockQuote
Source§impl From<SubstitutionDefinition> for SubBlockQuote
impl From<SubstitutionDefinition> for SubBlockQuote
Source§fn from(inner: SubstitutionDefinition) -> Self
fn from(inner: SubstitutionDefinition) -> Self
Converts to this type from the input type.
Source§impl From<SystemMessage> for SubBlockQuote
impl From<SystemMessage> for SubBlockQuote
Source§fn from(inner: SystemMessage) -> Self
fn from(inner: SystemMessage) -> Self
Converts to this type from the input type.
Source§impl From<Table> for SubBlockQuote
impl From<Table> for SubBlockQuote
Source§impl From<Target> for SubBlockQuote
impl From<Target> for SubBlockQuote
Source§impl From<Tip> for SubBlockQuote
impl From<Tip> for SubBlockQuote
Source§impl From<Warning> for SubBlockQuote
impl From<Warning> for SubBlockQuote
Source§impl HasChildren<SubBlockQuote> for BlockQuote
impl HasChildren<SubBlockQuote> for BlockQuote
fn with_children(children: Vec<SubBlockQuote>) -> BlockQuote
fn children(&self) -> &Vec<SubBlockQuote>
fn children_mut(&mut self) -> &mut Vec<SubBlockQuote>
fn append_child<R: Into<C>>(&mut self, child: R)
fn append_children<R: Into<C> + Clone>(&mut self, more: &[R])
Source§impl PartialEq for SubBlockQuote
impl PartialEq for SubBlockQuote
Source§impl Serialize for SubBlockQuote
impl Serialize for SubBlockQuote
impl StructuralPartialEq for SubBlockQuote
Auto Trait Implementations§
impl Freeze for SubBlockQuote
impl RefUnwindSafe for SubBlockQuote
impl Send for SubBlockQuote
impl Sync for SubBlockQuote
impl Unpin for SubBlockQuote
impl UnwindSafe for SubBlockQuote
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