pub enum VoiceStressStyleValue {
Normal(Ident),
Strong(Ident),
Moderate(Ident),
None(Ident),
Reduced(Ident),
}Expand description
Represents the style value for voice-stress as defined in css-speech-1.
The grammar is defined as:
normal | strong | moderate | none | reducedVariants§
Trait Implementations§
Source§impl Clone for VoiceStressStyleValue
impl Clone for VoiceStressStyleValue
Source§fn clone(&self) -> VoiceStressStyleValue
fn clone(&self) -> VoiceStressStyleValue
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 VoiceStressStyleValue
impl Debug for VoiceStressStyleValue
Source§impl Hash for VoiceStressStyleValue
impl Hash for VoiceStressStyleValue
Source§impl Ord for VoiceStressStyleValue
impl Ord for VoiceStressStyleValue
Source§fn cmp(&self, other: &VoiceStressStyleValue) -> Ordering
fn cmp(&self, other: &VoiceStressStyleValue) -> 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 VoiceStressStyleValue
impl<'a> Parse<'a> for VoiceStressStyleValue
Source§impl PartialEq for VoiceStressStyleValue
impl PartialEq for VoiceStressStyleValue
Source§impl PartialOrd for VoiceStressStyleValue
impl PartialOrd for VoiceStressStyleValue
Source§impl<'a> Peek<'a> for VoiceStressStyleValue
impl<'a> Peek<'a> for VoiceStressStyleValue
Source§impl ToCursors for VoiceStressStyleValue
impl ToCursors for VoiceStressStyleValue
fn to_cursors(&self, s: &mut impl CursorSink)
impl Eq for VoiceStressStyleValue
impl StructuralPartialEq for VoiceStressStyleValue
Auto Trait Implementations§
impl Freeze for VoiceStressStyleValue
impl RefUnwindSafe for VoiceStressStyleValue
impl Send for VoiceStressStyleValue
impl Sync for VoiceStressStyleValue
impl Unpin for VoiceStressStyleValue
impl UnwindSafe for VoiceStressStyleValue
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