pub enum TranscriptionFormat {
Text,
Html,
Unknown(String),
}Expand description
Voicemail transcription output format.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for TranscriptionFormat
impl Clone for TranscriptionFormat
Source§fn clone(&self) -> TranscriptionFormat
fn clone(&self) -> TranscriptionFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TranscriptionFormat
impl Debug for TranscriptionFormat
Source§impl<'de> Deserialize<'de> for TranscriptionFormat
impl<'de> Deserialize<'de> for TranscriptionFormat
Source§fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(d: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for TranscriptionFormat
impl Display for TranscriptionFormat
Source§impl PartialEq for TranscriptionFormat
impl PartialEq for TranscriptionFormat
Source§fn eq(&self, other: &TranscriptionFormat) -> bool
fn eq(&self, other: &TranscriptionFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TranscriptionFormat
impl Serialize for TranscriptionFormat
impl Eq for TranscriptionFormat
impl StructuralPartialEq for TranscriptionFormat
Auto Trait Implementations§
impl Freeze for TranscriptionFormat
impl RefUnwindSafe for TranscriptionFormat
impl Send for TranscriptionFormat
impl Sync for TranscriptionFormat
impl Unpin for TranscriptionFormat
impl UnsafeUnpin for TranscriptionFormat
impl UnwindSafe for TranscriptionFormat
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