pub enum VoipStatus {
Show 13 variants
Unknown = -1,
ChannelDisconnected = 0,
ChannelConnecting = 1,
ChannelConnected = 2,
UserTalkingStart = 3,
UserTalkingEnd = 4,
UserMutedLocally = 5,
UserMutedRemotely = 6,
UserUnmutedLocally = 7,
UserUnmutedRemotely = 8,
UserJoined = 9,
UserLeft = 10,
Unavailable = 11,
}Variants§
Unknown = -1
ChannelDisconnected = 0
ChannelConnecting = 1
ChannelConnected = 2
UserTalkingStart = 3
UserTalkingEnd = 4
UserMutedLocally = 5
UserMutedRemotely = 6
UserUnmutedLocally = 7
UserUnmutedRemotely = 8
UserJoined = 9
UserLeft = 10
Trait Implementations§
Source§impl Debug for VoipStatus
impl Debug for VoipStatus
Source§impl<'de> Deserialize<'de> for VoipStatus
impl<'de> Deserialize<'de> for VoipStatus
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
Auto Trait Implementations§
impl Freeze for VoipStatus
impl RefUnwindSafe for VoipStatus
impl Send for VoipStatus
impl Sync for VoipStatus
impl Unpin for VoipStatus
impl UnwindSafe for VoipStatus
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