pub enum SliderOrientationStyleValue {
Auto(Ident),
LeftToRight(Ident),
RightToLeft(Ident),
TopToBottom(Ident),
BottomToTop(Ident),
}Expand description
Represents the style value for slider-orientation as defined in css-forms-1.
The grammar is defined as:
auto | left-to-right | right-to-left | top-to-bottom | bottom-to-topVariants§
Trait Implementations§
Source§impl Clone for SliderOrientationStyleValue
impl Clone for SliderOrientationStyleValue
Source§fn clone(&self) -> SliderOrientationStyleValue
fn clone(&self) -> SliderOrientationStyleValue
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 SliderOrientationStyleValue
impl Debug for SliderOrientationStyleValue
Source§impl Hash for SliderOrientationStyleValue
impl Hash for SliderOrientationStyleValue
Source§impl Ord for SliderOrientationStyleValue
impl Ord for SliderOrientationStyleValue
Source§fn cmp(&self, other: &SliderOrientationStyleValue) -> Ordering
fn cmp(&self, other: &SliderOrientationStyleValue) -> 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 SliderOrientationStyleValue
impl<'a> Parse<'a> for SliderOrientationStyleValue
Source§impl PartialOrd for SliderOrientationStyleValue
impl PartialOrd for SliderOrientationStyleValue
Source§impl<'a> Peek<'a> for SliderOrientationStyleValue
impl<'a> Peek<'a> for SliderOrientationStyleValue
Source§impl ToCursors for SliderOrientationStyleValue
impl ToCursors for SliderOrientationStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for SliderOrientationStyleValue
impl StructuralPartialEq for SliderOrientationStyleValue
Auto Trait Implementations§
impl Freeze for SliderOrientationStyleValue
impl RefUnwindSafe for SliderOrientationStyleValue
impl Send for SliderOrientationStyleValue
impl Sync for SliderOrientationStyleValue
impl Unpin for SliderOrientationStyleValue
impl UnwindSafe for SliderOrientationStyleValue
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