pub struct PdgFootnote {
pub pdgid: Option<PdgId>,
pub index: Option<isize>,
pub text: Option<String>,
pub changebar: bool,
}Expand description
Footnote attached to a PDG identifier or measurement.
Fields§
§pdgid: Option<PdgId>PDG identifier for entry-level footnotes.
index: Option<isize>Footnote index within the owning entry.
text: Option<String>Footnote text, when present in the database.
changebar: boolWhether the footnote is marked by a PDG change bar.
Trait Implementations§
Source§impl Clone for PdgFootnote
impl Clone for PdgFootnote
Source§fn clone(&self) -> PdgFootnote
fn clone(&self) -> PdgFootnote
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 PdgFootnote
impl Debug for PdgFootnote
Auto Trait Implementations§
impl Freeze for PdgFootnote
impl RefUnwindSafe for PdgFootnote
impl Send for PdgFootnote
impl Sync for PdgFootnote
impl Unpin for PdgFootnote
impl UnsafeUnpin for PdgFootnote
impl UnwindSafe for PdgFootnote
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