pub struct FootnoteRef<'a> {
pub label: Option<&'a str>,
pub children: Option<Vec<NodeID>>,
}
Fields§
§label: Option<&'a str>
§children: Option<Vec<NodeID>>
Trait Implementations§
Source§impl<'a> Clone for FootnoteRef<'a>
impl<'a> Clone for FootnoteRef<'a>
Source§fn clone(&self) -> FootnoteRef<'a>
fn clone(&self) -> FootnoteRef<'a>
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<'a> Debug for FootnoteRef<'a>
impl<'a> Debug for FootnoteRef<'a>
Source§impl<'a> From<FootnoteRef<'a>> for Expr<'a>
impl<'a> From<FootnoteRef<'a>> for Expr<'a>
Source§fn from(original: FootnoteRef<'a>) -> Expr<'a>
fn from(original: FootnoteRef<'a>) -> Expr<'a>
Converts to this type from the input type.
Auto Trait Implementations§
impl<'a> Freeze for FootnoteRef<'a>
impl<'a> RefUnwindSafe for FootnoteRef<'a>
impl<'a> Send for FootnoteRef<'a>
impl<'a> Sync for FootnoteRef<'a>
impl<'a> Unpin for FootnoteRef<'a>
impl<'a> UnwindSafe for FootnoteRef<'a>
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