pub enum OutlineLineStyle {
None(Ident),
Hidden(Ident),
Dotted(Ident),
Dashed(Ident),
Solid(Ident),
Double(Ident),
Groove(Ident),
Ridge(Ident),
Inset(Ident),
Outset(Ident),
}Expand description
https://drafts.csswg.org/css-ui-4/#typedef-outline-line-style
<outline-line-style> accepts the same values as <line-style> (CSS Backgrounds 3 § 3.2 Line Patterns: the
border-style properties) with the same meaning, except that hidden is not a legal outline style. In addition, the
outline-style property accepts the value auto.
<line-style> = none | hidden | dotted | dashed | solid | double | groove | ridge | inset | outsetVariants§
None(Ident)
Hidden(Ident)
Dotted(Ident)
Dashed(Ident)
Solid(Ident)
Double(Ident)
Groove(Ident)
Ridge(Ident)
Inset(Ident)
Outset(Ident)
Trait Implementations§
Source§impl Clone for OutlineLineStyle
impl Clone for OutlineLineStyle
Source§fn clone(&self) -> OutlineLineStyle
fn clone(&self) -> OutlineLineStyle
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 OutlineLineStyle
impl Debug for OutlineLineStyle
Source§impl Hash for OutlineLineStyle
impl Hash for OutlineLineStyle
Source§impl Ord for OutlineLineStyle
impl Ord for OutlineLineStyle
Source§fn cmp(&self, other: &OutlineLineStyle) -> Ordering
fn cmp(&self, other: &OutlineLineStyle) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> Parse<'a> for OutlineLineStyle
impl<'a> Parse<'a> for OutlineLineStyle
Source§impl PartialEq for OutlineLineStyle
impl PartialEq for OutlineLineStyle
Source§impl PartialOrd for OutlineLineStyle
impl PartialOrd for OutlineLineStyle
Source§impl<'a> Peek<'a> for OutlineLineStyle
impl<'a> Peek<'a> for OutlineLineStyle
Source§impl ToCursors for OutlineLineStyle
impl ToCursors for OutlineLineStyle
fn to_cursors(&self, s: &mut impl CursorSink)
impl Copy for OutlineLineStyle
impl Eq for OutlineLineStyle
impl StructuralPartialEq for OutlineLineStyle
Auto Trait Implementations§
impl Freeze for OutlineLineStyle
impl RefUnwindSafe for OutlineLineStyle
impl Send for OutlineLineStyle
impl Sync for OutlineLineStyle
impl Unpin for OutlineLineStyle
impl UnwindSafe for OutlineLineStyle
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