pub enum BlockEllipsisStyleValue {
NoEllipsis(Ident),
Auto(Ident),
String(String),
}Expand description
Represents the style value for block-ellipsis as defined in css-overflow-5.
The grammar is defined as:
no-ellipsis | auto | <string>Variants§
Trait Implementations§
Source§impl Clone for BlockEllipsisStyleValue
impl Clone for BlockEllipsisStyleValue
Source§fn clone(&self) -> BlockEllipsisStyleValue
fn clone(&self) -> BlockEllipsisStyleValue
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 BlockEllipsisStyleValue
impl Debug for BlockEllipsisStyleValue
Source§impl Hash for BlockEllipsisStyleValue
impl Hash for BlockEllipsisStyleValue
Source§impl Ord for BlockEllipsisStyleValue
impl Ord for BlockEllipsisStyleValue
Source§fn cmp(&self, other: &BlockEllipsisStyleValue) -> Ordering
fn cmp(&self, other: &BlockEllipsisStyleValue) -> 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 BlockEllipsisStyleValue
impl<'a> Parse<'a> for BlockEllipsisStyleValue
Source§impl PartialEq for BlockEllipsisStyleValue
impl PartialEq for BlockEllipsisStyleValue
Source§impl PartialOrd for BlockEllipsisStyleValue
impl PartialOrd for BlockEllipsisStyleValue
Source§impl<'a> Peek<'a> for BlockEllipsisStyleValue
impl<'a> Peek<'a> for BlockEllipsisStyleValue
Source§impl ToCursors for BlockEllipsisStyleValue
impl ToCursors for BlockEllipsisStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for BlockEllipsisStyleValue
impl StructuralPartialEq for BlockEllipsisStyleValue
Auto Trait Implementations§
impl Freeze for BlockEllipsisStyleValue
impl RefUnwindSafe for BlockEllipsisStyleValue
impl Send for BlockEllipsisStyleValue
impl Sync for BlockEllipsisStyleValue
impl Unpin for BlockEllipsisStyleValue
impl UnwindSafe for BlockEllipsisStyleValue
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