pub struct Notes {
pub notes: Vec<Note>,
pub is_footnotes: bool,
pub unknown_children: Vec<RawXmlNode>,
}Expand description
Collection of footnotes or endnotes
Fields§
§notes: Vec<Note>Individual notes
is_footnotes: boolWhether these are footnotes (true) or endnotes (false)
unknown_children: Vec<RawXmlNode>Unknown children (preserved for round-trip)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Notes
impl RefUnwindSafe for Notes
impl Send for Notes
impl Sync for Notes
impl Unpin for Notes
impl UnsafeUnpin for Notes
impl UnwindSafe for Notes
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