pub struct TableStyleInfoXml {
pub name: Option<String>,
pub show_first_column: Option<bool>,
pub show_last_column: Option<bool>,
pub show_row_stripes: Option<bool>,
pub show_column_stripes: Option<bool>,
}Expand description
Style information for a table.
Fields§
§name: Option<String>§show_first_column: Option<bool>§show_last_column: Option<bool>§show_row_stripes: Option<bool>§show_column_stripes: Option<bool>Trait Implementations§
Source§impl Clone for TableStyleInfoXml
impl Clone for TableStyleInfoXml
Source§fn clone(&self) -> TableStyleInfoXml
fn clone(&self) -> TableStyleInfoXml
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 TableStyleInfoXml
impl Debug for TableStyleInfoXml
Source§impl<'de> Deserialize<'de> for TableStyleInfoXml
impl<'de> Deserialize<'de> for TableStyleInfoXml
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TableStyleInfoXml
impl PartialEq for TableStyleInfoXml
Source§impl Serialize for TableStyleInfoXml
impl Serialize for TableStyleInfoXml
impl StructuralPartialEq for TableStyleInfoXml
Auto Trait Implementations§
impl Freeze for TableStyleInfoXml
impl RefUnwindSafe for TableStyleInfoXml
impl Send for TableStyleInfoXml
impl Sync for TableStyleInfoXml
impl Unpin for TableStyleInfoXml
impl UnwindSafe for TableStyleInfoXml
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