[][src]Enum document_tree::element_categories::SubSidebar

pub enum SubSidebar {
    Topic(Box<Topic>),
    Title(Box<Title>),
    Subtitle(Box<Subtitle>),
    BodyElement(Box<BodyElement>),
}

Variants

Topic(Box<Topic>)
Title(Box<Title>)
Subtitle(Box<Subtitle>)
BodyElement(Box<BodyElement>)

Trait Implementations

impl Clone for SubSidebar[src]

impl Debug for SubSidebar[src]

impl HasChildren<SubSidebar> for Sidebar[src]

impl Into<SubSidebar> for Paragraph[src]

impl Into<SubSidebar> for LiteralBlock[src]

impl Into<SubSidebar> for Image[src]

impl Into<SubSidebar> for Compound[src]

impl Into<SubSidebar> for Container[src]

impl Into<SubSidebar> for BulletList[src]

impl Into<SubSidebar> for EnumeratedList[src]

impl Into<SubSidebar> for DefinitionList[src]

impl Into<SubSidebar> for FieldList[src]

impl Into<SubSidebar> for OptionList[src]

impl Into<SubSidebar> for LineBlock[src]

impl Into<SubSidebar> for BlockQuote[src]

impl Into<SubSidebar> for DoctestBlock[src]

impl Into<SubSidebar> for Admonition[src]

impl Into<SubSidebar> for Attention[src]

impl Into<SubSidebar> for Hint[src]

impl Into<SubSidebar> for Note[src]

impl Into<SubSidebar> for Caution[src]

impl Into<SubSidebar> for Danger[src]

impl Into<SubSidebar> for Error[src]

impl Into<SubSidebar> for Important[src]

impl Into<SubSidebar> for Tip[src]

impl Into<SubSidebar> for Warning[src]

impl Into<SubSidebar> for MathBlock[src]

impl Into<SubSidebar> for Footnote[src]

impl Into<SubSidebar> for Citation[src]

impl Into<SubSidebar> for SystemMessage[src]

impl Into<SubSidebar> for Figure[src]

impl Into<SubSidebar> for Table[src]

impl Into<SubSidebar> for Topic[src]

impl Into<SubSidebar> for Title[src]

impl Into<SubSidebar> for Subtitle[src]

impl Into<SubSidebar> for BodyElement[src]

impl Into<SubSidebar> for Rubric[src]

impl Into<SubSidebar> for SubstitutionDefinition[src]

impl Into<SubSidebar> for Comment[src]

impl Into<SubSidebar> for Pending[src]

impl Into<SubSidebar> for Target[src]

impl Into<SubSidebar> for Raw[src]

impl PartialEq<SubSidebar> for SubSidebar[src]

impl Serialize for SubSidebar[src]

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