pub enum BorderLineStyle {
Show 14 variants
None,
Thin,
Medium,
Dashed,
Dotted,
Thick,
Double,
Hair,
MediumDashed,
DashDot,
MediumDashDot,
DashDotDot,
MediumDashDotDot,
SlantDashDot,
}Expand description
Border line styles.
Corresponds to ST_BorderStyle in ECMA-376 Part 1, §18.18.3.
Variants§
None
No border.
Thin
Thin single line.
Medium
Medium single line.
Dashed
Dashed line.
Dotted
Dotted line.
Thick
Thick single line.
Double
Double line.
Hair
Hairline (thinnest possible).
MediumDashed
Medium dashed line.
DashDot
Alternating dash-dot line.
MediumDashDot
Medium alternating dash-dot line.
DashDotDot
Alternating dash-dot-dot line.
MediumDashDotDot
Medium alternating dash-dot-dot line.
SlantDashDot
Slanted dash-dot line.
Trait Implementations§
Source§impl Clone for BorderLineStyle
impl Clone for BorderLineStyle
Source§fn clone(&self) -> BorderLineStyle
fn clone(&self) -> BorderLineStyle
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 BorderLineStyle
impl Debug for BorderLineStyle
Source§impl Default for BorderLineStyle
impl Default for BorderLineStyle
Source§fn default() -> BorderLineStyle
fn default() -> BorderLineStyle
Returns the “default value” for a type. Read more
Source§impl PartialEq for BorderLineStyle
impl PartialEq for BorderLineStyle
impl Copy for BorderLineStyle
impl Eq for BorderLineStyle
impl StructuralPartialEq for BorderLineStyle
Auto Trait Implementations§
impl Freeze for BorderLineStyle
impl RefUnwindSafe for BorderLineStyle
impl Send for BorderLineStyle
impl Sync for BorderLineStyle
impl Unpin for BorderLineStyle
impl UnsafeUnpin for BorderLineStyle
impl UnwindSafe for BorderLineStyle
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.