pub struct FootnoteDef {
pub label: String,
pub text: String,
pub line: usize,
}Expand description
A [^label]: text definition line.
Fields§
§label: StringThe label between [^ and ]:.
text: StringThe prose after the colon.
line: usize1-based line number within the body.
Trait Implementations§
Source§impl Clone for FootnoteDef
impl Clone for FootnoteDef
Source§fn clone(&self) -> FootnoteDef
fn clone(&self) -> FootnoteDef
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 FootnoteDef
impl Debug for FootnoteDef
impl Eq for FootnoteDef
Source§impl PartialEq for FootnoteDef
impl PartialEq for FootnoteDef
impl StructuralPartialEq for FootnoteDef
Auto Trait Implementations§
impl Freeze for FootnoteDef
impl RefUnwindSafe for FootnoteDef
impl Send for FootnoteDef
impl Sync for FootnoteDef
impl Unpin for FootnoteDef
impl UnsafeUnpin for FootnoteDef
impl UnwindSafe for FootnoteDef
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