pub enum PlayInstructions {
SkipUnread,
Unread,
DontSay,
Unknown(String),
}Expand description
Voicemail playback instruction mode.
Variants§
SkipUnread
Skip instructions on unread messages.
Unread
Read full instructions for unread messages.
DontSay
Don’t say instructions.
Unknown(String)
Any wire value this crate doesn’t recognize.
Implementations§
Trait Implementations§
Source§impl Clone for PlayInstructions
impl Clone for PlayInstructions
Source§fn clone(&self) -> PlayInstructions
fn clone(&self) -> PlayInstructions
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 PlayInstructions
impl Debug for PlayInstructions
Source§impl<'de> Deserialize<'de> for PlayInstructions
impl<'de> Deserialize<'de> for PlayInstructions
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 PlayInstructions
impl Display for PlayInstructions
Source§impl PartialEq for PlayInstructions
impl PartialEq for PlayInstructions
Source§fn eq(&self, other: &PlayInstructions) -> bool
fn eq(&self, other: &PlayInstructions) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PlayInstructions
impl Serialize for PlayInstructions
impl Eq for PlayInstructions
impl StructuralPartialEq for PlayInstructions
Auto Trait Implementations§
impl Freeze for PlayInstructions
impl RefUnwindSafe for PlayInstructions
impl Send for PlayInstructions
impl Sync for PlayInstructions
impl Unpin for PlayInstructions
impl UnsafeUnpin for PlayInstructions
impl UnwindSafe for PlayInstructions
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