pub enum OverflowInlineStyleValue {
Visible(Ident),
Hidden(Ident),
Clip(Ident),
Scroll(Ident),
Auto(Ident),
}Expand description
Represents the style value for overflow-inline as defined in css-overflow-5.
CSS logical properties control borders, size, margin, and padding with directions and dimensions relative to the writing mode. For example, in a left to right, top to bottom writing mode, block-end refers to the bottom. Also known as flow relative.
The grammar is defined as:
visible | hidden | clip | scroll | autoVariants§
Trait Implementations§
Source§impl Clone for OverflowInlineStyleValue
impl Clone for OverflowInlineStyleValue
Source§fn clone(&self) -> OverflowInlineStyleValue
fn clone(&self) -> OverflowInlineStyleValue
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 OverflowInlineStyleValue
impl Debug for OverflowInlineStyleValue
Source§impl Hash for OverflowInlineStyleValue
impl Hash for OverflowInlineStyleValue
Source§impl Ord for OverflowInlineStyleValue
impl Ord for OverflowInlineStyleValue
Source§fn cmp(&self, other: &OverflowInlineStyleValue) -> Ordering
fn cmp(&self, other: &OverflowInlineStyleValue) -> 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 OverflowInlineStyleValue
impl<'a> Parse<'a> for OverflowInlineStyleValue
Source§impl PartialEq for OverflowInlineStyleValue
impl PartialEq for OverflowInlineStyleValue
Source§impl PartialOrd for OverflowInlineStyleValue
impl PartialOrd for OverflowInlineStyleValue
Source§impl<'a> Peek<'a> for OverflowInlineStyleValue
impl<'a> Peek<'a> for OverflowInlineStyleValue
Source§impl ToCursors for OverflowInlineStyleValue
impl ToCursors for OverflowInlineStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for OverflowInlineStyleValue
impl StructuralPartialEq for OverflowInlineStyleValue
Auto Trait Implementations§
impl Freeze for OverflowInlineStyleValue
impl RefUnwindSafe for OverflowInlineStyleValue
impl Send for OverflowInlineStyleValue
impl Sync for OverflowInlineStyleValue
impl Unpin for OverflowInlineStyleValue
impl UnwindSafe for OverflowInlineStyleValue
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