pub struct InlineFootnote {
pub meta: NodeMeta,
pub children: Vec<Inline>,
}Expand description
An inline footnote: ^[inline note].
Fields§
§meta: NodeMetaNode metadata (source span).
children: Vec<Inline>The footnote’s inline content.
Trait Implementations§
Source§impl Clone for InlineFootnote
impl Clone for InlineFootnote
Source§fn clone(&self) -> InlineFootnote
fn clone(&self) -> InlineFootnote
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 InlineFootnote
impl Debug for InlineFootnote
impl Eq for InlineFootnote
Source§impl From<InlineFootnote> for Inline
impl From<InlineFootnote> for Inline
Source§fn from(node: InlineFootnote) -> Self
fn from(node: InlineFootnote) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InlineFootnote
impl PartialEq for InlineFootnote
Source§fn eq(&self, other: &InlineFootnote) -> bool
fn eq(&self, other: &InlineFootnote) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InlineFootnote
Auto Trait Implementations§
impl Freeze for InlineFootnote
impl RefUnwindSafe for InlineFootnote
impl Send for InlineFootnote
impl Sync for InlineFootnote
impl Unpin for InlineFootnote
impl UnsafeUnpin for InlineFootnote
impl UnwindSafe for InlineFootnote
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