pub struct CT_TableStyle {Show 15 fields
pub style_id: String,
pub style_name: String,
pub whole_table: Option<CT_TablePartStyle>,
pub band1_horizontal: Option<CT_TablePartStyle>,
pub band2_horizontal: Option<CT_TablePartStyle>,
pub band1_vertical: Option<CT_TablePartStyle>,
pub band2_vertical: Option<CT_TablePartStyle>,
pub first_column: Option<CT_TablePartStyle>,
pub last_column: Option<CT_TablePartStyle>,
pub first_row: Option<CT_TablePartStyle>,
pub last_row: Option<CT_TablePartStyle>,
pub north_west_cell: Option<CT_TablePartStyle>,
pub north_east_cell: Option<CT_TablePartStyle>,
pub south_west_cell: Option<CT_TablePartStyle>,
pub south_east_cell: Option<CT_TablePartStyle>,
/* private fields */
}Expand description
One named table style and its ordered region overlays.
Fields§
§style_id: String§style_name: String§whole_table: Option<CT_TablePartStyle>§band1_horizontal: Option<CT_TablePartStyle>§band2_horizontal: Option<CT_TablePartStyle>§band1_vertical: Option<CT_TablePartStyle>§band2_vertical: Option<CT_TablePartStyle>§first_column: Option<CT_TablePartStyle>§last_column: Option<CT_TablePartStyle>§first_row: Option<CT_TablePartStyle>§last_row: Option<CT_TablePartStyle>§north_west_cell: Option<CT_TablePartStyle>§north_east_cell: Option<CT_TablePartStyle>§south_west_cell: Option<CT_TablePartStyle>§south_east_cell: Option<CT_TablePartStyle>Trait Implementations§
Source§impl Clone for CT_TableStyle
impl Clone for CT_TableStyle
Source§fn clone(&self) -> CT_TableStyle
fn clone(&self) -> CT_TableStyle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CT_TableStyle
impl Debug for CT_TableStyle
Source§impl Default for CT_TableStyle
impl Default for CT_TableStyle
Source§fn default() -> CT_TableStyle
fn default() -> CT_TableStyle
Returns the “default value” for a type. Read more
impl Eq for CT_TableStyle
Source§impl PartialEq for CT_TableStyle
impl PartialEq for CT_TableStyle
impl StructuralPartialEq for CT_TableStyle
Auto Trait Implementations§
impl Freeze for CT_TableStyle
impl RefUnwindSafe for CT_TableStyle
impl Send for CT_TableStyle
impl Sync for CT_TableStyle
impl Unpin for CT_TableStyle
impl UnsafeUnpin for CT_TableStyle
impl UnwindSafe for CT_TableStyle
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