pub struct Note {
pub id: String,
pub kind: NoteKind,
pub text: String,
pub anchor: Option<TextAnchor>,
}Expand description
A footnote or endnote recovered from a Word document.
Fields§
§id: StringStable note id. For legacy .doc recovery this is a synthetic id because
the current binary reader only exposes subdocument regions, not individual
note reference ids.
kind: NoteKindFootnote or endnote.
text: StringVisible note body text.
anchor: Option<TextAnchor>Body range or reference marker this note is anchored to, if known.
Trait Implementations§
impl Eq for Note
impl StructuralPartialEq for Note
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.