pub enum FootnoteKind {
Manual,
AutoNumbered,
SimpleRefName,
AutoSymbol,
}Expand description
There are 4 different kinds of footnote markers:
- Manually numbered:
.. [1],.. [2], … - automatically numbered: .. [#]
- automatically nubered with a simple reference name: .. [#simple_ref-name]
- Automatically generated symbolic markers: .. [*]
Variants§
Manual
Signifies a manually numbered footnote.
AutoNumbered
Signifies an automatically numbered footnote.
SimpleRefName
Signifies an automatically numbered footnote, with a simple reference name as its display label.
AutoSymbol
Signifies a footnote with an automatically generated string as its label.
Trait Implementations§
Source§impl Clone for FootnoteKind
impl Clone for FootnoteKind
Source§fn clone(&self) -> FootnoteKind
fn clone(&self) -> FootnoteKind
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 FootnoteKind
impl Debug for FootnoteKind
impl Copy for FootnoteKind
Auto Trait Implementations§
impl Freeze for FootnoteKind
impl RefUnwindSafe for FootnoteKind
impl Send for FootnoteKind
impl Sync for FootnoteKind
impl Unpin for FootnoteKind
impl UnwindSafe for FootnoteKind
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