#[repr(C)]pub enum StyleEmptyCells {
Show = 0,
Hide = 1,
}Expand description
Specifies whether or not to display borders and background on empty cells.
The empty-cells property only applies when border-collapse is set to separate.
A cell is considered empty if it contains no visible content.
Variants§
Show = 0
Show borders and background on empty cells (default)
Hide = 1
Hide borders and background on empty cells
Trait Implementations§
Source§impl Clone for StyleEmptyCells
impl Clone for StyleEmptyCells
Source§fn clone(&self) -> StyleEmptyCells
fn clone(&self) -> StyleEmptyCells
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 StyleEmptyCells
impl Debug for StyleEmptyCells
Source§impl Default for StyleEmptyCells
impl Default for StyleEmptyCells
Source§impl FormatAsRustCode for StyleEmptyCells
impl FormatAsRustCode for StyleEmptyCells
fn format_as_rust_code(&self, _tabs: usize) -> String
Source§impl From<StyleEmptyCells> for CssProperty
impl From<StyleEmptyCells> for CssProperty
Source§fn from(e: StyleEmptyCells) -> Self
fn from(e: StyleEmptyCells) -> Self
Converts to this type from the input type.
Source§impl Hash for StyleEmptyCells
impl Hash for StyleEmptyCells
Source§impl Ord for StyleEmptyCells
impl Ord for StyleEmptyCells
Source§fn cmp(&self, other: &StyleEmptyCells) -> Ordering
fn cmp(&self, other: &StyleEmptyCells) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StyleEmptyCells
impl PartialEq for StyleEmptyCells
Source§impl PartialOrd for StyleEmptyCells
impl PartialOrd for StyleEmptyCells
Source§impl PrintAsCssValue for StyleEmptyCells
impl PrintAsCssValue for StyleEmptyCells
fn print_as_css_value(&self) -> String
impl Copy for StyleEmptyCells
impl Eq for StyleEmptyCells
impl StructuralPartialEq for StyleEmptyCells
Auto Trait Implementations§
impl Freeze for StyleEmptyCells
impl RefUnwindSafe for StyleEmptyCells
impl Send for StyleEmptyCells
impl Sync for StyleEmptyCells
impl Unpin for StyleEmptyCells
impl UnwindSafe for StyleEmptyCells
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