pub struct FootnoteReference {
pub meta: NodeMeta,
pub label: String,
pub identifier: String,
}Expand description
A footnote reference: [^id].
Fields§
§meta: NodeMetaNode metadata (source span).
label: StringThe label as written in the source (the text after ^).
identifier: StringThe normalized lookup key matching a FootnoteDefinition.
Trait Implementations§
Source§impl Clone for FootnoteReference
impl Clone for FootnoteReference
Source§fn clone(&self) -> FootnoteReference
fn clone(&self) -> FootnoteReference
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FootnoteReference
impl Debug for FootnoteReference
impl Eq for FootnoteReference
Source§impl From<FootnoteReference> for Inline
impl From<FootnoteReference> for Inline
Source§fn from(node: FootnoteReference) -> Self
fn from(node: FootnoteReference) -> Self
Converts to this type from the input type.
Source§impl PartialEq for FootnoteReference
impl PartialEq for FootnoteReference
Source§fn eq(&self, other: &FootnoteReference) -> bool
fn eq(&self, other: &FootnoteReference) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FootnoteReference
Auto Trait Implementations§
impl Freeze for FootnoteReference
impl RefUnwindSafe for FootnoteReference
impl Send for FootnoteReference
impl Sync for FootnoteReference
impl Unpin for FootnoteReference
impl UnsafeUnpin for FootnoteReference
impl UnwindSafe for FootnoteReference
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