pub struct CellBorderStyle {
pub width: f64,
pub color: Color,
pub dash_pattern: Option<LineDashPattern>,
}Expand description
Cell border style options
Fields§
§width: f64Border width
color: ColorBorder color
dash_pattern: Option<LineDashPattern>Dash pattern (None for solid)
Trait Implementations§
Source§impl Clone for CellBorderStyle
impl Clone for CellBorderStyle
Source§fn clone(&self) -> CellBorderStyle
fn clone(&self) -> CellBorderStyle
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 CellBorderStyle
impl Debug for CellBorderStyle
Auto Trait Implementations§
impl Freeze for CellBorderStyle
impl RefUnwindSafe for CellBorderStyle
impl Send for CellBorderStyle
impl Sync for CellBorderStyle
impl Unpin for CellBorderStyle
impl UnwindSafe for CellBorderStyle
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