pub enum VoiceCallDirection {
Inbound,
Outbound,
}Expand description
Inbound vs. outbound. Wire-stable snake_case strings — never
renumber or rename. New states (e.g. internal) would be a wire
addition, not a replacement.
Variants§
Trait Implementations§
Source§impl Clone for VoiceCallDirection
impl Clone for VoiceCallDirection
Source§fn clone(&self) -> VoiceCallDirection
fn clone(&self) -> VoiceCallDirection
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 VoiceCallDirection
impl Debug for VoiceCallDirection
Source§impl<'de> Deserialize<'de> for VoiceCallDirection
impl<'de> Deserialize<'de> for VoiceCallDirection
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 VoiceCallDirection
impl PartialEq for VoiceCallDirection
Source§fn eq(&self, other: &VoiceCallDirection) -> bool
fn eq(&self, other: &VoiceCallDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for VoiceCallDirection
impl Serialize for VoiceCallDirection
impl Copy for VoiceCallDirection
impl Eq for VoiceCallDirection
impl StructuralPartialEq for VoiceCallDirection
Auto Trait Implementations§
impl Freeze for VoiceCallDirection
impl RefUnwindSafe for VoiceCallDirection
impl Send for VoiceCallDirection
impl Sync for VoiceCallDirection
impl Unpin for VoiceCallDirection
impl UnsafeUnpin for VoiceCallDirection
impl UnwindSafe for VoiceCallDirection
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