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

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

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl QueryUsers[src]

pub fn new() -> QueryUsers[src]

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

pub fn clear_ids(&mut self)[src]

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

pub fn mut_ids(&mut self) -> &mut Vec<u32>[src]

pub fn take_ids(&mut self) -> Vec<u32>[src]

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

pub fn clear_names(&mut self)[src]

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

pub fn mut_names(&mut self) -> &mut RepeatedField<String>[src]

pub fn take_names(&mut self) -> RepeatedField<String>[src]

Trait Implementations

impl Clear for QueryUsers[src]

impl Clone for QueryUsers[src]

impl Debug for QueryUsers[src]

impl Default for QueryUsers[src]

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

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

impl From<QueryUsers> for RawControlPacket[src]

impl Message for QueryUsers[src]

impl PartialEq<QueryUsers> for QueryUsers[src]

impl ProtobufValue for QueryUsers[src]

impl StructuralPartialEq for QueryUsers[src]

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

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<Bytes> for QueryUsers[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

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