pub struct StyleTable {
pub block: StyleBlock,
pub center_separator: Option<String>,
pub column_separator: Option<String>,
pub row_separator: Option<String>,
}Expand description
Table style settings.
Fields§
§block: StyleBlockBlock style settings.
center_separator: Option<String>Center separator character.
column_separator: Option<String>Column separator character.
row_separator: Option<String>Row separator character.
Implementations§
Trait Implementations§
Source§impl Clone for StyleTable
impl Clone for StyleTable
Source§fn clone(&self) -> StyleTable
fn clone(&self) -> StyleTable
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 StyleTable
impl Debug for StyleTable
Source§impl Default for StyleTable
impl Default for StyleTable
Source§fn default() -> StyleTable
fn default() -> StyleTable
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StyleTable
impl RefUnwindSafe for StyleTable
impl Send for StyleTable
impl Sync for StyleTable
impl Unpin for StyleTable
impl UnwindSafe for StyleTable
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