pub struct AlternatingRowColors {
pub even_color: Color,
pub odd_color: Color,
pub include_header: bool,
}Expand description
Alternating row color configuration
Fields§
§even_color: ColorColor for even rows
odd_color: ColorColor for odd rows
include_header: boolWhether to include header rows in alternation
Trait Implementations§
Source§impl Clone for AlternatingRowColors
impl Clone for AlternatingRowColors
Source§fn clone(&self) -> AlternatingRowColors
fn clone(&self) -> AlternatingRowColors
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 moreAuto Trait Implementations§
impl Freeze for AlternatingRowColors
impl RefUnwindSafe for AlternatingRowColors
impl Send for AlternatingRowColors
impl Sync for AlternatingRowColors
impl Unpin for AlternatingRowColors
impl UnwindSafe for AlternatingRowColors
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