pub struct TableStyleInfo { /* private fields */ }Implementations§
Source§impl TableStyleInfo
impl TableStyleInfo
pub fn new( name: &str, show_first_col: bool, show_last_col: bool, show_row_stripes: bool, show_col_stripes: bool, ) -> Self
pub fn get_name(&self) -> &str
pub fn is_show_first_col(&self) -> bool
pub fn is_show_last_col(&self) -> bool
pub fn is_show_row_stripes(&self) -> bool
pub fn is_show_col_stripes(&self) -> bool
Trait Implementations§
Source§impl Clone for TableStyleInfo
impl Clone for TableStyleInfo
Source§fn clone(&self) -> TableStyleInfo
fn clone(&self) -> TableStyleInfo
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 TableStyleInfo
impl Debug for TableStyleInfo
Source§impl Default for TableStyleInfo
impl Default for TableStyleInfo
Source§fn default() -> TableStyleInfo
fn default() -> TableStyleInfo
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TableStyleInfo
impl RefUnwindSafe for TableStyleInfo
impl Send for TableStyleInfo
impl Sync for TableStyleInfo
impl Unpin for TableStyleInfo
impl UnwindSafe for TableStyleInfo
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