pub enum EmailAttachmentFormat {
Wav49,
Wav,
Mp3,
No,
Unknown(String),
}Expand description
Voicemail email attachment format.
Variants§
Wav49
GSM-compressed WAV.
Wav
Mp3
No
Do not attach audio.
Unknown(String)
Any wire value this crate doesn’t recognize.
Implementations§
Trait Implementations§
Source§impl Clone for EmailAttachmentFormat
impl Clone for EmailAttachmentFormat
Source§fn clone(&self) -> EmailAttachmentFormat
fn clone(&self) -> EmailAttachmentFormat
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 EmailAttachmentFormat
impl Debug for EmailAttachmentFormat
Source§impl<'de> Deserialize<'de> for EmailAttachmentFormat
impl<'de> Deserialize<'de> for EmailAttachmentFormat
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 EmailAttachmentFormat
impl Display for EmailAttachmentFormat
Source§impl PartialEq for EmailAttachmentFormat
impl PartialEq for EmailAttachmentFormat
Source§fn eq(&self, other: &EmailAttachmentFormat) -> bool
fn eq(&self, other: &EmailAttachmentFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EmailAttachmentFormat
impl Serialize for EmailAttachmentFormat
impl Eq for EmailAttachmentFormat
impl StructuralPartialEq for EmailAttachmentFormat
Auto Trait Implementations§
impl Freeze for EmailAttachmentFormat
impl RefUnwindSafe for EmailAttachmentFormat
impl Send for EmailAttachmentFormat
impl Sync for EmailAttachmentFormat
impl Unpin for EmailAttachmentFormat
impl UnsafeUnpin for EmailAttachmentFormat
impl UnwindSafe for EmailAttachmentFormat
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