pub struct Note {
pub id: i32,
pub note_type: Option<String>,
pub paragraphs: Vec<Paragraph>,
pub unknown_children: Vec<RawXmlNode>,
}Expand description
A single footnote or endnote
Fields§
§id: i32Note ID
note_type: Option<String>Note type (normal, separator, continuationSeparator)
paragraphs: Vec<Paragraph>Paragraphs
unknown_children: Vec<RawXmlNode>Unknown children (preserved for round-trip)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Note
impl RefUnwindSafe for Note
impl Send for Note
impl Sync for Note
impl Unpin for Note
impl UnsafeUnpin for Note
impl UnwindSafe for Note
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