pub enum ReadingFlowStyleValue {
Normal(Ident),
SourceOrder(Ident),
FlexVisual(Ident),
FlexFlow(Ident),
GridRows(Ident),
GridColumns(Ident),
GridOrder(Ident),
}Expand description
Represents the style value for reading-flow as defined in css-display-4.
The reading-flow CSS property sets the order in which flex or grid elements are rendered to speech or reached via focus navigation. The reading-order property overrides this order.
The grammar is defined as:
normal | source-order | flex-visual | flex-flow | grid-rows | grid-columns | grid-orderVariants§
Normal(Ident)
SourceOrder(Ident)
FlexVisual(Ident)
FlexFlow(Ident)
GridRows(Ident)
GridColumns(Ident)
GridOrder(Ident)
Trait Implementations§
Source§impl Clone for ReadingFlowStyleValue
impl Clone for ReadingFlowStyleValue
Source§fn clone(&self) -> ReadingFlowStyleValue
fn clone(&self) -> ReadingFlowStyleValue
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 ReadingFlowStyleValue
impl Debug for ReadingFlowStyleValue
Source§impl Hash for ReadingFlowStyleValue
impl Hash for ReadingFlowStyleValue
Source§impl Ord for ReadingFlowStyleValue
impl Ord for ReadingFlowStyleValue
Source§fn cmp(&self, other: &ReadingFlowStyleValue) -> Ordering
fn cmp(&self, other: &ReadingFlowStyleValue) -> 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 ReadingFlowStyleValue
impl<'a> Parse<'a> for ReadingFlowStyleValue
Source§impl PartialEq for ReadingFlowStyleValue
impl PartialEq for ReadingFlowStyleValue
Source§impl PartialOrd for ReadingFlowStyleValue
impl PartialOrd for ReadingFlowStyleValue
Source§impl<'a> Peek<'a> for ReadingFlowStyleValue
impl<'a> Peek<'a> for ReadingFlowStyleValue
Source§impl ToCursors for ReadingFlowStyleValue
impl ToCursors for ReadingFlowStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for ReadingFlowStyleValue
impl StructuralPartialEq for ReadingFlowStyleValue
Auto Trait Implementations§
impl Freeze for ReadingFlowStyleValue
impl RefUnwindSafe for ReadingFlowStyleValue
impl Send for ReadingFlowStyleValue
impl Sync for ReadingFlowStyleValue
impl Unpin for ReadingFlowStyleValue
impl UnwindSafe for ReadingFlowStyleValue
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