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: String
Which table is active when opening.
show_grid: bool
Show grid in general. Per sheet definition take priority.
show_page_breaks: bool
Show page-breaks.
has_sheet_tabs: bool
Are 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 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 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_heap_size_with_tracker<TRACKER: GetSizeTracker>(
&self,
tracker: TRACKER,
) -> (usize, TRACKER)
fn get_heap_size_with_tracker<TRACKER: GetSizeTracker>( &self, tracker: TRACKER, ) -> (usize, TRACKER)
Determines how many bytes this object occupies inside the heap while using a
tracker
. Read moreSource§fn get_stack_size() -> usize
fn get_stack_size() -> usize
Determines how may bytes this object occupies inside the stack. Read more
Source§fn get_size_with_tracker<T>(&self, tracker: T) -> (usize, T)where
T: GetSizeTracker,
fn get_size_with_tracker<T>(&self, tracker: T) -> (usize, T)where
T: GetSizeTracker,
Determines the total size of the object while using a
tracker
. Read moreAuto Trait Implementations§
impl Freeze for WorkBookConfig
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