pub enum VoiceCallDisposition {
Answered,
Missed,
Rejected,
Cancelled,
Failed,
}Expand description
User-visible disposition. Derived from VoiceCallEndReason by the
daemon; the platform stores both, so future UI surfaces can read
either without re-deriving.
Variants§
Trait Implementations§
Source§impl Clone for VoiceCallDisposition
impl Clone for VoiceCallDisposition
Source§fn clone(&self) -> VoiceCallDisposition
fn clone(&self) -> VoiceCallDisposition
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 VoiceCallDisposition
impl Debug for VoiceCallDisposition
Source§impl<'de> Deserialize<'de> for VoiceCallDisposition
impl<'de> Deserialize<'de> for VoiceCallDisposition
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for VoiceCallDisposition
impl PartialEq for VoiceCallDisposition
Source§fn eq(&self, other: &VoiceCallDisposition) -> bool
fn eq(&self, other: &VoiceCallDisposition) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VoiceCallDisposition
impl Serialize for VoiceCallDisposition
impl Copy for VoiceCallDisposition
impl Eq for VoiceCallDisposition
impl StructuralPartialEq for VoiceCallDisposition
Auto Trait Implementations§
impl Freeze for VoiceCallDisposition
impl RefUnwindSafe for VoiceCallDisposition
impl Send for VoiceCallDisposition
impl Sync for VoiceCallDisposition
impl Unpin for VoiceCallDisposition
impl UnsafeUnpin for VoiceCallDisposition
impl UnwindSafe for VoiceCallDisposition
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