#[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 Freeze for GlobalTableBorderOptions
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.