pub struct FootnoteNode {
pub label: String,
pub children: Vec<Node>,
pub position: Position,
}Expand description
A footnote node (definition or reference).
Fields§
§label: String§children: Vec<Node>§position: PositionTrait Implementations§
Source§impl Clone for FootnoteNode
impl Clone for FootnoteNode
Source§fn clone(&self) -> FootnoteNode
fn clone(&self) -> FootnoteNode
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 FootnoteNode
impl Debug for FootnoteNode
Source§impl<'de> Deserialize<'de> for FootnoteNode
impl<'de> Deserialize<'de> for FootnoteNode
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FootnoteNode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FootnoteNode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FootnoteNode
impl PartialEq for FootnoteNode
Source§impl Serialize for FootnoteNode
impl Serialize for FootnoteNode
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for FootnoteNode
Auto Trait Implementations§
impl Freeze for FootnoteNode
impl RefUnwindSafe for FootnoteNode
impl Send for FootnoteNode
impl Sync for FootnoteNode
impl Unpin for FootnoteNode
impl UnsafeUnpin for FootnoteNode
impl UnwindSafe for FootnoteNode
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