pub enum SpeechFormat {
SpellOut,
Currency,
Cardinal,
Ordinal,
Digits,
Date(DateFormat),
Time,
Telephone,
Custom {
interpret_as: Box<str>,
format: Option<Box<str>>,
detail: Option<Box<str>>,
},
}
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SpeechFormat
impl Clone for SpeechFormat
Source§fn clone(&self) -> SpeechFormat
fn clone(&self) -> SpeechFormat
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 SpeechFormat
impl Debug for SpeechFormat
Source§impl PartialEq for SpeechFormat
impl PartialEq for SpeechFormat
impl Eq for SpeechFormat
impl StructuralPartialEq for SpeechFormat
Auto Trait Implementations§
impl Freeze for SpeechFormat
impl RefUnwindSafe for SpeechFormat
impl Send for SpeechFormat
impl Sync for SpeechFormat
impl Unpin for SpeechFormat
impl UnwindSafe for SpeechFormat
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