pub enum BorderBoundaryStyleValue {
None(Ident),
Parent(Ident),
Display(Ident),
}Expand description
Represents the style value for border-boundary as defined in css-round-display-1.
The grammar is defined as:
none | parent | displayVariants§
Trait Implementations§
Source§impl Clone for BorderBoundaryStyleValue
impl Clone for BorderBoundaryStyleValue
Source§fn clone(&self) -> BorderBoundaryStyleValue
fn clone(&self) -> BorderBoundaryStyleValue
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 BorderBoundaryStyleValue
impl Debug for BorderBoundaryStyleValue
Source§impl Hash for BorderBoundaryStyleValue
impl Hash for BorderBoundaryStyleValue
Source§impl Ord for BorderBoundaryStyleValue
impl Ord for BorderBoundaryStyleValue
Source§fn cmp(&self, other: &BorderBoundaryStyleValue) -> Ordering
fn cmp(&self, other: &BorderBoundaryStyleValue) -> 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 BorderBoundaryStyleValue
impl<'a> Parse<'a> for BorderBoundaryStyleValue
Source§impl PartialEq for BorderBoundaryStyleValue
impl PartialEq for BorderBoundaryStyleValue
Source§impl PartialOrd for BorderBoundaryStyleValue
impl PartialOrd for BorderBoundaryStyleValue
Source§impl<'a> Peek<'a> for BorderBoundaryStyleValue
impl<'a> Peek<'a> for BorderBoundaryStyleValue
Source§impl ToCursors for BorderBoundaryStyleValue
impl ToCursors for BorderBoundaryStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for BorderBoundaryStyleValue
impl StructuralPartialEq for BorderBoundaryStyleValue
Auto Trait Implementations§
impl Freeze for BorderBoundaryStyleValue
impl RefUnwindSafe for BorderBoundaryStyleValue
impl Send for BorderBoundaryStyleValue
impl Sync for BorderBoundaryStyleValue
impl Unpin for BorderBoundaryStyleValue
impl UnwindSafe for BorderBoundaryStyleValue
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