#[repr(C)]pub enum TalkStatus {
NotTalking = 0,
Talking = 1,
TalkingWhileDisabled = 2,
}Variants§
NotTalking = 0
client is not talking
Talking = 1
client is talking
TalkingWhileDisabled = 2
client is talking while the microphone is muted (only valid for own client)
Trait Implementations§
Source§impl Clone for TalkStatus
impl Clone for TalkStatus
Source§fn clone(&self) -> TalkStatus
fn clone(&self) -> TalkStatus
Returns a duplicate of the value. Read more
1.0.0 · 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 TalkStatus
impl Debug for TalkStatus
Source§impl PartialEq for TalkStatus
impl PartialEq for TalkStatus
impl Copy for TalkStatus
impl Eq for TalkStatus
impl StructuralPartialEq for TalkStatus
Auto Trait Implementations§
impl Freeze for TalkStatus
impl RefUnwindSafe for TalkStatus
impl Send for TalkStatus
impl Sync for TalkStatus
impl Unpin for TalkStatus
impl UnwindSafe for TalkStatus
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