pub struct UserFlags {
pub mute: bool,
pub deaf: bool,
pub suppress: bool,
pub self_mute: bool,
pub self_deaf: bool,
pub priority_speaker: bool,
pub recording: bool,
}Expand description
The boolean user state Mumble carries on UserState.
Fields§
§mute: bool§deaf: bool§suppress: bool§self_mute: bool§self_deaf: bool§priority_speaker: bool§recording: boolTrait Implementations§
impl Copy for UserFlags
impl Eq for UserFlags
impl StructuralPartialEq for UserFlags
Auto Trait Implementations§
impl Freeze for UserFlags
impl RefUnwindSafe for UserFlags
impl Send for UserFlags
impl Sync for UserFlags
impl Unpin for UserFlags
impl UnwindSafe for UserFlags
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