pub enum SubFootnote {
Label(Box<Label>),
BodyElement(Box<BodyElement>),
}Variants§
Trait Implementations§
Source§impl Clone for SubFootnote
impl Clone for SubFootnote
Source§fn clone(&self) -> SubFootnote
fn clone(&self) -> SubFootnote
Returns a duplicate 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 SubFootnote
impl Debug for SubFootnote
Source§impl From<Admonition> for SubFootnote
impl From<Admonition> for SubFootnote
Source§fn from(inner: Admonition) -> Self
fn from(inner: Admonition) -> Self
Converts to this type from the input type.
Source§impl From<Attention> for SubFootnote
impl From<Attention> for SubFootnote
Source§impl From<BlockQuote> for SubFootnote
impl From<BlockQuote> for SubFootnote
Source§fn from(inner: BlockQuote) -> Self
fn from(inner: BlockQuote) -> Self
Converts to this type from the input type.
Source§impl From<BodyElement> for SubFootnote
impl From<BodyElement> for SubFootnote
Source§fn from(inner: BodyElement) -> Self
fn from(inner: BodyElement) -> Self
Converts to this type from the input type.
Source§impl From<BulletList> for SubFootnote
impl From<BulletList> for SubFootnote
Source§fn from(inner: BulletList) -> Self
fn from(inner: BulletList) -> Self
Converts to this type from the input type.
Source§impl From<Caution> for SubFootnote
impl From<Caution> for SubFootnote
Source§impl From<Citation> for SubFootnote
impl From<Citation> for SubFootnote
Source§impl From<Comment> for SubFootnote
impl From<Comment> for SubFootnote
Source§impl From<Compound> for SubFootnote
impl From<Compound> for SubFootnote
Source§impl From<Container> for SubFootnote
impl From<Container> for SubFootnote
Source§impl From<Danger> for SubFootnote
impl From<Danger> for SubFootnote
Source§impl From<DefinitionList> for SubFootnote
impl From<DefinitionList> for SubFootnote
Source§fn from(inner: DefinitionList) -> Self
fn from(inner: DefinitionList) -> Self
Converts to this type from the input type.
Source§impl From<DoctestBlock> for SubFootnote
impl From<DoctestBlock> for SubFootnote
Source§fn from(inner: DoctestBlock) -> Self
fn from(inner: DoctestBlock) -> Self
Converts to this type from the input type.
Source§impl From<EnumeratedList> for SubFootnote
impl From<EnumeratedList> for SubFootnote
Source§fn from(inner: EnumeratedList) -> Self
fn from(inner: EnumeratedList) -> Self
Converts to this type from the input type.
Source§impl From<Error> for SubFootnote
impl From<Error> for SubFootnote
Source§impl From<FieldList> for SubFootnote
impl From<FieldList> for SubFootnote
Source§impl From<Figure> for SubFootnote
impl From<Figure> for SubFootnote
Source§impl From<Footnote> for SubFootnote
impl From<Footnote> for SubFootnote
Source§impl From<Hint> for SubFootnote
impl From<Hint> for SubFootnote
Source§impl From<Image> for SubFootnote
impl From<Image> for SubFootnote
Source§impl From<Important> for SubFootnote
impl From<Important> for SubFootnote
Source§impl From<Label> for SubFootnote
impl From<Label> for SubFootnote
Source§impl From<LineBlock> for SubFootnote
impl From<LineBlock> for SubFootnote
Source§impl From<LiteralBlock> for SubFootnote
impl From<LiteralBlock> for SubFootnote
Source§fn from(inner: LiteralBlock) -> Self
fn from(inner: LiteralBlock) -> Self
Converts to this type from the input type.
Source§impl From<MathBlock> for SubFootnote
impl From<MathBlock> for SubFootnote
Source§impl From<Note> for SubFootnote
impl From<Note> for SubFootnote
Source§impl From<OptionList> for SubFootnote
impl From<OptionList> for SubFootnote
Source§fn from(inner: OptionList) -> Self
fn from(inner: OptionList) -> Self
Converts to this type from the input type.
Source§impl From<Paragraph> for SubFootnote
impl From<Paragraph> for SubFootnote
Source§impl From<Pending> for SubFootnote
impl From<Pending> for SubFootnote
Source§impl From<Raw> for SubFootnote
impl From<Raw> for SubFootnote
Source§impl From<Rubric> for SubFootnote
impl From<Rubric> for SubFootnote
Source§impl From<SubstitutionDefinition> for SubFootnote
impl From<SubstitutionDefinition> for SubFootnote
Source§fn from(inner: SubstitutionDefinition) -> Self
fn from(inner: SubstitutionDefinition) -> Self
Converts to this type from the input type.
Source§impl From<SystemMessage> for SubFootnote
impl From<SystemMessage> for SubFootnote
Source§fn from(inner: SystemMessage) -> Self
fn from(inner: SystemMessage) -> Self
Converts to this type from the input type.
Source§impl From<Table> for SubFootnote
impl From<Table> for SubFootnote
Source§impl From<Target> for SubFootnote
impl From<Target> for SubFootnote
Source§impl From<Tip> for SubFootnote
impl From<Tip> for SubFootnote
Source§impl From<Warning> for SubFootnote
impl From<Warning> for SubFootnote
Source§impl HasChildren<SubFootnote> for Citation
impl HasChildren<SubFootnote> for Citation
fn with_children(children: Vec<SubFootnote>) -> Citation
fn children(&self) -> &Vec<SubFootnote>
fn children_mut(&mut self) -> &mut Vec<SubFootnote>
fn append_child<R: Into<C>>(&mut self, child: R)
fn append_children<R: Into<C> + Clone>(&mut self, more: &[R])
Source§impl HasChildren<SubFootnote> for Footnote
impl HasChildren<SubFootnote> for Footnote
fn with_children(children: Vec<SubFootnote>) -> Footnote
fn children(&self) -> &Vec<SubFootnote>
fn children_mut(&mut self) -> &mut Vec<SubFootnote>
fn append_child<R: Into<C>>(&mut self, child: R)
fn append_children<R: Into<C> + Clone>(&mut self, more: &[R])
Source§impl JsonSchema for SubFootnote
impl JsonSchema for SubFootnote
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for SubFootnote
impl PartialEq for SubFootnote
Source§impl Serialize for SubFootnote
impl Serialize for SubFootnote
impl StructuralPartialEq for SubFootnote
Auto Trait Implementations§
impl Freeze for SubFootnote
impl RefUnwindSafe for SubFootnote
impl Send for SubFootnote
impl Sync for SubFootnote
impl Unpin for SubFootnote
impl UnwindSafe for SubFootnote
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