pub struct WorkbookTable {Show 14 fields
pub highlight_first_column: bool,
pub highlight_last_column: bool,
pub legacy_id: String,
pub name: String,
pub show_banded_columns: bool,
pub show_banded_rows: bool,
pub show_filter_button: bool,
pub show_headers: bool,
pub show_totals: bool,
pub style: String,
pub columns: Vec<WorkbookTableColumn>,
pub rows: Vec<WorkbookTableRow>,
pub sort: WorkbookTableSort,
pub worksheet: WorkbookWorksheet,
}
Fields§
§highlight_first_column: bool
§highlight_last_column: bool
§legacy_id: String
§name: String
§show_banded_columns: bool
§show_banded_rows: bool
§show_headers: bool
§show_totals: bool
§style: String
§columns: Vec<WorkbookTableColumn>
§rows: Vec<WorkbookTableRow>
§sort: WorkbookTableSort
§worksheet: WorkbookWorksheet
Trait Implementations§
Source§impl Clone for WorkbookTable
impl Clone for WorkbookTable
Source§fn clone(&self) -> WorkbookTable
fn clone(&self) -> WorkbookTable
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 WorkbookTable
impl Debug for WorkbookTable
Source§impl<'de> Deserialize<'de> for WorkbookTable
impl<'de> Deserialize<'de> for WorkbookTable
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
Source§impl PartialEq for WorkbookTable
impl PartialEq for WorkbookTable
Source§impl Serialize for WorkbookTable
impl Serialize for WorkbookTable
impl Eq for WorkbookTable
impl StructuralPartialEq for WorkbookTable
Auto Trait Implementations§
impl Freeze for WorkbookTable
impl RefUnwindSafe for WorkbookTable
impl Send for WorkbookTable
impl Sync for WorkbookTable
impl Unpin for WorkbookTable
impl UnwindSafe for WorkbookTable
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