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

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

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl BanList[src]

pub fn new() -> BanList[src]

pub fn get_bans(&self) -> &[BanList_BanEntry][src]

pub fn clear_bans(&mut self)[src]

pub fn set_bans(&mut self, v: RepeatedField<BanList_BanEntry>)[src]

pub fn mut_bans(&mut self) -> &mut RepeatedField<BanList_BanEntry>[src]

pub fn take_bans(&mut self) -> RepeatedField<BanList_BanEntry>[src]

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

pub fn clear_query(&mut self)[src]

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

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

Trait Implementations

impl Clear for BanList[src]

impl Clone for BanList[src]

impl Debug for BanList[src]

impl Default for BanList[src]

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

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

impl From<BanList> for RawControlPacket[src]

impl Message for BanList[src]

impl PartialEq<BanList> for BanList[src]

impl ProtobufValue for BanList[src]

impl StructuralPartialEq for BanList[src]

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

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<Bytes> for BanList[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for BanList[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for BanList

impl Send for BanList

impl Sync for BanList

impl Unpin for BanList

impl UnwindSafe for BanList

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.