[][src]Struct mumble_protocol::control::msgs::UserRemove

pub struct UserRemove {
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
    // some fields omitted
}

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl UserRemove[src]

pub fn new() -> UserRemove[src]

pub fn get_session(&self) -> u32[src]

pub fn clear_session(&mut self)[src]

pub fn has_session(&self) -> bool[src]

pub fn set_session(&mut self, v: u32)[src]

pub fn get_actor(&self) -> u32[src]

pub fn clear_actor(&mut self)[src]

pub fn has_actor(&self) -> bool[src]

pub fn set_actor(&mut self, v: u32)[src]

pub fn get_reason(&self) -> &str[src]

pub fn clear_reason(&mut self)[src]

pub fn has_reason(&self) -> bool[src]

pub fn set_reason(&mut self, v: String)[src]

pub fn mut_reason(&mut self) -> &mut String[src]

pub fn take_reason(&mut self) -> String[src]

pub fn get_ban(&self) -> bool[src]

pub fn clear_ban(&mut self)[src]

pub fn has_ban(&self) -> bool[src]

pub fn set_ban(&mut self, v: bool)[src]

Trait Implementations

impl Clear for UserRemove[src]

impl Clone for UserRemove[src]

impl Debug for UserRemove[src]

impl Default for UserRemove[src]

impl<'a> Default for &'a UserRemove[src]

impl<Dst: VoicePacketDst> From<UserRemove> for ControlPacket<Dst>[src]

impl From<UserRemove> for RawControlPacket[src]

impl Message for UserRemove[src]

impl PartialEq<UserRemove> for UserRemove[src]

impl ProtobufValue for UserRemove[src]

impl StructuralPartialEq for UserRemove[src]

impl<'_> TryFrom<&'_ [u8]> for UserRemove[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<Bytes> for UserRemove[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for UserRemove[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.