[][src]Enum document_tree::element_categories::SubFigure

pub enum SubFigure {
    Caption(Box<Caption>),
    Legend(Box<Legend>),
    BodyElement(Box<BodyElement>),
}

Variants

Caption(Box<Caption>)
Legend(Box<Legend>)
BodyElement(Box<BodyElement>)

Trait Implementations

impl Clone for SubFigure[src]

impl Debug for SubFigure[src]

impl HasChildren<SubFigure> for Figure[src]

impl Into<SubFigure> for Paragraph[src]

impl Into<SubFigure> for LiteralBlock[src]

impl Into<SubFigure> for Image[src]

impl Into<SubFigure> for Compound[src]

impl Into<SubFigure> for Container[src]

impl Into<SubFigure> for BulletList[src]

impl Into<SubFigure> for EnumeratedList[src]

impl Into<SubFigure> for DefinitionList[src]

impl Into<SubFigure> for FieldList[src]

impl Into<SubFigure> for OptionList[src]

impl Into<SubFigure> for LineBlock[src]

impl Into<SubFigure> for BlockQuote[src]

impl Into<SubFigure> for DoctestBlock[src]

impl Into<SubFigure> for Admonition[src]

impl Into<SubFigure> for Attention[src]

impl Into<SubFigure> for Hint[src]

impl Into<SubFigure> for Note[src]

impl Into<SubFigure> for Caution[src]

impl Into<SubFigure> for Danger[src]

impl Into<SubFigure> for Error[src]

impl Into<SubFigure> for Important[src]

impl Into<SubFigure> for Tip[src]

impl Into<SubFigure> for Warning[src]

impl Into<SubFigure> for MathBlock[src]

impl Into<SubFigure> for Footnote[src]

impl Into<SubFigure> for Citation[src]

impl Into<SubFigure> for SystemMessage[src]

impl Into<SubFigure> for Figure[src]

impl Into<SubFigure> for Table[src]

impl Into<SubFigure> for Caption[src]

impl Into<SubFigure> for Legend[src]

impl Into<SubFigure> for BodyElement[src]

impl Into<SubFigure> for Rubric[src]

impl Into<SubFigure> for SubstitutionDefinition[src]

impl Into<SubFigure> for Comment[src]

impl Into<SubFigure> for Pending[src]

impl Into<SubFigure> for Target[src]

impl Into<SubFigure> for Raw[src]

impl PartialEq<SubFigure> for SubFigure[src]

impl Serialize for SubFigure[src]

impl StructuralPartialEq for SubFigure[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.