pub struct Table {
pub name: String,
pub display_name: String,
pub sheet_name: String,
pub reference: String,
pub totals_row_count: u32,
pub header_row_count: u32,
pub header_row_dxf_id: Option<u32>,
pub data_dxf_id: Option<u32>,
pub totals_row_dxf_id: Option<u32>,
pub columns: Vec<TableColumn>,
pub style_info: TableStyleInfo,
pub has_filters: bool,
}Fields§
§name: String§display_name: String§sheet_name: String§reference: String§totals_row_count: u32§header_row_count: u32§header_row_dxf_id: Option<u32>§data_dxf_id: Option<u32>§totals_row_dxf_id: Option<u32>§columns: Vec<TableColumn>§style_info: TableStyleInfo§has_filters: boolTrait Implementations§
impl<'__de> Decode<'__de> for Tablewhere
'__de:,
impl Encode for Table
impl Eq for Table
impl StructuralPartialEq for Table
Auto Trait Implementations§
impl Freeze for Table
impl RefUnwindSafe for Table
impl Send for Table
impl Sync for Table
impl Unpin for Table
impl UnsafeUnpin for Table
impl UnwindSafe for Table
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