Struct spreadsheet_ods::workbook::WorkBookConfig
source · pub struct WorkBookConfig {
pub active_table: String,
pub show_grid: bool,
pub show_page_breaks: bool,
pub has_sheet_tabs: bool,
}Expand description
Subset of the Workbook wide configurations.
Fields§
§active_table: StringWhich table is active when opening.
show_grid: boolShow grid in general. Per sheet definition take priority.
show_page_breaks: boolShow page-breaks.
has_sheet_tabs: boolAre the sheet-tabs shown or not.
Trait Implementations§
source§impl Clone for WorkBookConfig
impl Clone for WorkBookConfig
source§fn clone(&self) -> WorkBookConfig
fn clone(&self) -> WorkBookConfig
Returns a copy 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 WorkBookConfig
impl Debug for WorkBookConfig
source§impl Default for WorkBookConfig
impl Default for WorkBookConfig
source§impl GetSize for WorkBookConfig
impl GetSize for WorkBookConfig
source§fn get_heap_size(&self) -> usize
fn get_heap_size(&self) -> usize
Determines how many bytes this object occupies inside the heap. Read more
source§fn get_stack_size() -> usize
fn get_stack_size() -> usize
Determines how may bytes this object occupies inside the stack. Read more
Auto Trait Implementations§
impl RefUnwindSafe for WorkBookConfig
impl Send for WorkBookConfig
impl Sync for WorkBookConfig
impl Unpin for WorkBookConfig
impl UnwindSafe for WorkBookConfig
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