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

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

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl ChannelState[src]

pub fn new() -> ChannelState[src]

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

pub fn clear_channel_id(&mut self)[src]

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

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

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

pub fn clear_parent(&mut self)[src]

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

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

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

pub fn clear_name(&mut self)[src]

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

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

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

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

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

pub fn clear_description(&mut self)[src]

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

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

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

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

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

pub fn clear_temporary(&mut self)[src]

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

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

pub fn get_position(&self) -> i32[src]

pub fn clear_position(&mut self)[src]

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

pub fn set_position(&mut self, v: i32)[src]

pub fn get_description_hash(&self) -> &[u8][src]

pub fn clear_description_hash(&mut self)[src]

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

pub fn set_description_hash(&mut self, v: Vec<u8>)[src]

pub fn mut_description_hash(&mut self) -> &mut Vec<u8>[src]

pub fn take_description_hash(&mut self) -> Vec<u8>[src]

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

pub fn clear_max_users(&mut self)[src]

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

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

Trait Implementations

impl Clear for ChannelState[src]

impl Clone for ChannelState[src]

impl Debug for ChannelState[src]

impl Default for ChannelState[src]

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

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

impl From<ChannelState> for RawControlPacket[src]

impl Message for ChannelState[src]

impl PartialEq<ChannelState> for ChannelState[src]

impl ProtobufValue for ChannelState[src]

impl StructuralPartialEq for ChannelState[src]

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

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<Bytes> for ChannelState[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for ChannelState[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.