pub struct HeaderStyle {
pub background_color: Color,
pub text_color: Color,
pub font: Font,
pub bold: bool,
}Expand description
Header row styling options
Fields§
§background_color: ColorBackground color for header cells
text_color: ColorText color for header cells
font: FontFont for header text
bold: boolMake header text bold
Trait Implementations§
Source§impl Clone for HeaderStyle
impl Clone for HeaderStyle
Source§fn clone(&self) -> HeaderStyle
fn clone(&self) -> HeaderStyle
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 HeaderStyle
impl RefUnwindSafe for HeaderStyle
impl Send for HeaderStyle
impl Sync for HeaderStyle
impl Unpin for HeaderStyle
impl UnwindSafe for HeaderStyle
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