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

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

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl SuggestConfig[src]

pub fn new() -> SuggestConfig[src]

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

pub fn clear_version(&mut self)[src]

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

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

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

pub fn clear_positional(&mut self)[src]

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

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

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

pub fn clear_push_to_talk(&mut self)[src]

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

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

Trait Implementations

impl Clear for SuggestConfig[src]

impl Clone for SuggestConfig[src]

impl Debug for SuggestConfig[src]

impl Default for SuggestConfig[src]

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

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

impl From<SuggestConfig> for RawControlPacket[src]

impl Message for SuggestConfig[src]

impl PartialEq<SuggestConfig> for SuggestConfig[src]

impl ProtobufValue for SuggestConfig[src]

impl StructuralPartialEq for SuggestConfig[src]

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

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<Bytes> for SuggestConfig[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

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