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

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

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl RequestBlob[src]

pub fn new() -> RequestBlob[src]

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

pub fn clear_session_texture(&mut self)[src]

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

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

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

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

pub fn clear_session_comment(&mut self)[src]

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

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

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

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

pub fn clear_channel_description(&mut self)[src]

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

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

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

Trait Implementations

impl Clear for RequestBlob[src]

impl Clone for RequestBlob[src]

impl Debug for RequestBlob[src]

impl Default for RequestBlob[src]

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

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

impl From<RequestBlob> for RawControlPacket[src]

impl Message for RequestBlob[src]

impl PartialEq<RequestBlob> for RequestBlob[src]

impl ProtobufValue for RequestBlob[src]

impl StructuralPartialEq for RequestBlob[src]

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

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<Bytes> for RequestBlob[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

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