#[non_exhaustive]pub struct GlobalTableBorderOptions {
    pub uniform_border: Option<TableBorderOptions>,
    pub side_specific_border: Option<TableSideBorderOptions>,
}Expand description
Determines the border options for a table visual.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.uniform_border: Option<TableBorderOptions>Determines the options for uniform border.
side_specific_border: Option<TableSideBorderOptions>Determines the options for side specific border.
Implementations§
source§impl GlobalTableBorderOptions
 
impl GlobalTableBorderOptions
sourcepub fn uniform_border(&self) -> Option<&TableBorderOptions>
 
pub fn uniform_border(&self) -> Option<&TableBorderOptions>
Determines the options for uniform border.
sourcepub fn side_specific_border(&self) -> Option<&TableSideBorderOptions>
 
pub fn side_specific_border(&self) -> Option<&TableSideBorderOptions>
Determines the options for side specific border.
source§impl GlobalTableBorderOptions
 
impl GlobalTableBorderOptions
sourcepub fn builder() -> GlobalTableBorderOptionsBuilder
 
pub fn builder() -> GlobalTableBorderOptionsBuilder
Creates a new builder-style object to manufacture GlobalTableBorderOptions.
Trait Implementations§
source§impl Clone for GlobalTableBorderOptions
 
impl Clone for GlobalTableBorderOptions
source§fn clone(&self) -> GlobalTableBorderOptions
 
fn clone(&self) -> GlobalTableBorderOptions
Returns a copy 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 GlobalTableBorderOptions
 
impl Debug for GlobalTableBorderOptions
source§impl PartialEq for GlobalTableBorderOptions
 
impl PartialEq for GlobalTableBorderOptions
source§fn eq(&self, other: &GlobalTableBorderOptions) -> bool
 
fn eq(&self, other: &GlobalTableBorderOptions) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GlobalTableBorderOptions
Auto Trait Implementations§
impl RefUnwindSafe for GlobalTableBorderOptions
impl Send for GlobalTableBorderOptions
impl Sync for GlobalTableBorderOptions
impl Unpin for GlobalTableBorderOptions
impl UnwindSafe for GlobalTableBorderOptions
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
source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.