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

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

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl Authenticate[src]

pub fn new() -> Authenticate[src]

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

pub fn clear_username(&mut self)[src]

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

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

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

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

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

pub fn clear_password(&mut self)[src]

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

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

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

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

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

pub fn clear_tokens(&mut self)[src]

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

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

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

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

pub fn clear_celt_versions(&mut self)[src]

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

pub fn mut_celt_versions(&mut self) -> &mut Vec<i32>[src]

pub fn take_celt_versions(&mut self) -> Vec<i32>[src]

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

pub fn clear_opus(&mut self)[src]

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

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

Trait Implementations

impl Clear for Authenticate[src]

impl Clone for Authenticate[src]

impl Debug for Authenticate[src]

impl Default for Authenticate[src]

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

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

impl From<Authenticate> for RawControlPacket[src]

impl Message for Authenticate[src]

impl PartialEq<Authenticate> for Authenticate[src]

impl ProtobufValue for Authenticate[src]

impl StructuralPartialEq for Authenticate[src]

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

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<Bytes> for Authenticate[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

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