#[repr(i32)]pub enum TableBgTarget {
None = 0,
RowBg0 = 1,
RowBg1 = 2,
CellBg = 3,
}Expand description
Target for table background colors.
Variants§
None = 0
No background target
RowBg0 = 1
First alternating row background
RowBg1 = 2
Second alternating row background
CellBg = 3
Cell background
Trait Implementations§
Source§impl Clone for TableBgTarget
impl Clone for TableBgTarget
Source§fn clone(&self) -> TableBgTarget
fn clone(&self) -> TableBgTarget
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 TableBgTarget
impl Debug for TableBgTarget
Source§impl PartialEq for TableBgTarget
impl PartialEq for TableBgTarget
impl Copy for TableBgTarget
impl Eq for TableBgTarget
impl StructuralPartialEq for TableBgTarget
Auto Trait Implementations§
impl Freeze for TableBgTarget
impl RefUnwindSafe for TableBgTarget
impl Send for TableBgTarget
impl Sync for TableBgTarget
impl Unpin for TableBgTarget
impl UnwindSafe for TableBgTarget
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