pub enum VoicemailFolder {
Inbox,
Old,
Urgent,
Family,
Friends,
Work,
Unknown(String),
}Expand description
Voicemail message folder.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for VoicemailFolder
impl Clone for VoicemailFolder
Source§fn clone(&self) -> VoicemailFolder
fn clone(&self) -> VoicemailFolder
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 VoicemailFolder
impl Debug for VoicemailFolder
Source§impl<'de> Deserialize<'de> for VoicemailFolder
impl<'de> Deserialize<'de> for VoicemailFolder
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 VoicemailFolder
impl Display for VoicemailFolder
Source§impl PartialEq for VoicemailFolder
impl PartialEq for VoicemailFolder
Source§fn eq(&self, other: &VoicemailFolder) -> bool
fn eq(&self, other: &VoicemailFolder) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VoicemailFolder
impl Serialize for VoicemailFolder
impl Eq for VoicemailFolder
impl StructuralPartialEq for VoicemailFolder
Auto Trait Implementations§
impl Freeze for VoicemailFolder
impl RefUnwindSafe for VoicemailFolder
impl Send for VoicemailFolder
impl Sync for VoicemailFolder
impl Unpin for VoicemailFolder
impl UnsafeUnpin for VoicemailFolder
impl UnwindSafe for VoicemailFolder
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