pub struct TableStyleConfig {
pub table: TableConfig,
pub title: Option<TitleConfig>,
pub header: HeaderConfig,
pub rows: RowsConfig,
pub style: StyleConfig,
pub footer: Option<FooterConfig>,
}Fields§
§table: TableConfig§title: Option<TitleConfig>§header: HeaderConfig§rows: RowsConfig§style: StyleConfigImplementations§
Source§impl TableStyleConfig
impl TableStyleConfig
Sourcepub fn apply_to_table<T>(&self, table: &mut Table)where
T: Tabled,
pub fn apply_to_table<T>(&self, table: &mut Table)where
T: Tabled,
Apply the configuration to a tabled Table
Trait Implementations§
Source§impl Debug for TableStyleConfig
impl Debug for TableStyleConfig
Source§impl Default for TableStyleConfig
impl Default for TableStyleConfig
Source§impl<'de> Deserialize<'de> for TableStyleConfig
impl<'de> Deserialize<'de> for TableStyleConfig
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
Auto Trait Implementations§
impl Freeze for TableStyleConfig
impl RefUnwindSafe for TableStyleConfig
impl Send for TableStyleConfig
impl Sync for TableStyleConfig
impl Unpin for TableStyleConfig
impl UnwindSafe for TableStyleConfig
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