pub struct NoteSection {
pub heading: String,
pub narrative: String,
pub tables: Vec<NoteTable>,
}Expand description
A single section within a note (heading + narrative + optional tables).
Fields§
§heading: StringSection heading (e.g. “Basis of preparation”).
narrative: StringExplanatory narrative text.
tables: Vec<NoteTable>Optional tabular data supporting the narrative.
Trait Implementations§
Source§impl Clone for NoteSection
impl Clone for NoteSection
Source§fn clone(&self) -> NoteSection
fn clone(&self) -> NoteSection
Returns a duplicate of the value. Read more
1.0.0 · 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 NoteSection
impl Debug for NoteSection
Source§impl<'de> Deserialize<'de> for NoteSection
impl<'de> Deserialize<'de> for NoteSection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for NoteSection
impl RefUnwindSafe for NoteSection
impl Send for NoteSection
impl Sync for NoteSection
impl Unpin for NoteSection
impl UnsafeUnpin for NoteSection
impl UnwindSafe for NoteSection
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