pub enum PauseAfterStyleValue {
Time(Time),
None(Ident),
XWeak(Ident),
Weak(Ident),
Medium(Ident),
Strong(Ident),
XStrong(Ident),
}Expand description
Represents the style value for pause-after as defined in css-speech-1.
The grammar is defined as:
<time [0s,∞]> | none | x-weak | weak | medium | strong | x-strongVariants§
Trait Implementations§
Source§impl Clone for PauseAfterStyleValue
impl Clone for PauseAfterStyleValue
Source§fn clone(&self) -> PauseAfterStyleValue
fn clone(&self) -> PauseAfterStyleValue
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 PauseAfterStyleValue
impl Debug for PauseAfterStyleValue
Source§impl Hash for PauseAfterStyleValue
impl Hash for PauseAfterStyleValue
Source§impl Ord for PauseAfterStyleValue
impl Ord for PauseAfterStyleValue
Source§fn cmp(&self, other: &PauseAfterStyleValue) -> Ordering
fn cmp(&self, other: &PauseAfterStyleValue) -> 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 PauseAfterStyleValue
impl<'a> Parse<'a> for PauseAfterStyleValue
Source§impl PartialEq for PauseAfterStyleValue
impl PartialEq for PauseAfterStyleValue
Source§impl PartialOrd for PauseAfterStyleValue
impl PartialOrd for PauseAfterStyleValue
Source§impl<'a> Peek<'a> for PauseAfterStyleValue
impl<'a> Peek<'a> for PauseAfterStyleValue
Source§impl ToCursors for PauseAfterStyleValue
impl ToCursors for PauseAfterStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for PauseAfterStyleValue
impl StructuralPartialEq for PauseAfterStyleValue
Auto Trait Implementations§
impl Freeze for PauseAfterStyleValue
impl RefUnwindSafe for PauseAfterStyleValue
impl Send for PauseAfterStyleValue
impl Sync for PauseAfterStyleValue
impl Unpin for PauseAfterStyleValue
impl UnwindSafe for PauseAfterStyleValue
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