[][src]Enum document_tree::element_categories::SubStructure

pub enum SubStructure {
    Topic(Box<Topic>),
    Sidebar(Box<Sidebar>),
    Transition(Box<Transition>),
    Section(Box<Section>),
    BodyElement(Box<BodyElement>),
}

Variants

Topic(Box<Topic>)
Sidebar(Box<Sidebar>)
Transition(Box<Transition>)
Section(Box<Section>)
BodyElement(Box<BodyElement>)

Trait Implementations

impl Clone for SubStructure[src]

impl Debug for SubStructure[src]

impl Into<StructuralSubElement> for SubStructure[src]

impl Into<SubStructure> for Topic[src]

impl Into<SubStructure> for Sidebar[src]

impl Into<SubStructure> for SubstitutionDefinition[src]

impl Into<SubStructure> for Comment[src]

impl Into<SubStructure> for Pending[src]

impl Into<SubStructure> for Target[src]

impl Into<SubStructure> for Raw[src]

impl Into<SubStructure> for Image[src]

impl Into<SubStructure> for Compound[src]

impl Into<SubStructure> for Container[src]

impl Into<SubStructure> for BulletList[src]

impl Into<SubStructure> for EnumeratedList[src]

impl Into<SubStructure> for Transition[src]

impl Into<SubStructure> for DefinitionList[src]

impl Into<SubStructure> for FieldList[src]

impl Into<SubStructure> for OptionList[src]

impl Into<SubStructure> for LineBlock[src]

impl Into<SubStructure> for BlockQuote[src]

impl Into<SubStructure> for Admonition[src]

impl Into<SubStructure> for Attention[src]

impl Into<SubStructure> for Hint[src]

impl Into<SubStructure> for Note[src]

impl Into<SubStructure> for Caution[src]

impl Into<SubStructure> for Section[src]

impl Into<SubStructure> for Danger[src]

impl Into<SubStructure> for Error[src]

impl Into<SubStructure> for Important[src]

impl Into<SubStructure> for Tip[src]

impl Into<SubStructure> for Warning[src]

impl Into<SubStructure> for Footnote[src]

impl Into<SubStructure> for Citation[src]

impl Into<SubStructure> for SystemMessage[src]

impl Into<SubStructure> for Figure[src]

impl Into<SubStructure> for Table[src]

impl Into<SubStructure> for BodyElement[src]

impl Into<SubStructure> for Paragraph[src]

impl Into<SubStructure> for LiteralBlock[src]

impl Into<SubStructure> for DoctestBlock[src]

impl Into<SubStructure> for MathBlock[src]

impl Into<SubStructure> for Rubric[src]

impl PartialEq<SubStructure> for SubStructure[src]

impl Serialize for SubStructure[src]

impl StructuralPartialEq for SubStructure[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.