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