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

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

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl PermissionQuery[src]

pub fn new() -> PermissionQuery[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_permissions(&self) -> u32[src]

pub fn clear_permissions(&mut self)[src]

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

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

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

pub fn clear_flush(&mut self)[src]

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

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

Trait Implementations

impl Clear for PermissionQuery[src]

impl Clone for PermissionQuery[src]

impl Debug for PermissionQuery[src]

impl Default for PermissionQuery[src]

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

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

impl From<PermissionQuery> for RawControlPacket[src]

impl Message for PermissionQuery[src]

impl PartialEq<PermissionQuery> for PermissionQuery[src]

impl ProtobufValue for PermissionQuery[src]

impl StructuralPartialEq for PermissionQuery[src]

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

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<Bytes> for PermissionQuery[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

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