pub struct NoteTable {
pub caption: String,
pub headers: Vec<String>,
pub rows: Vec<Vec<NoteTableValue>>,
}Expand description
A two-dimensional disclosure table within a note section.
Fields§
§caption: StringBrief caption describing the table’s content.
headers: Vec<String>Column headers.
rows: Vec<Vec<NoteTableValue>>Data rows — each row has the same length as headers.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for NoteTable
impl<'de> Deserialize<'de> for NoteTable
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 NoteTable
impl RefUnwindSafe for NoteTable
impl Send for NoteTable
impl Sync for NoteTable
impl Unpin for NoteTable
impl UnsafeUnpin for NoteTable
impl UnwindSafe for NoteTable
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