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

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

Generated files are compatible only with the same version of protobuf runtime.

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl Version[src]

pub fn new() -> Version[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_release(&self) -> &str[src]

pub fn clear_release(&mut self)[src]

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

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

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

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

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

pub fn clear_os(&mut self)[src]

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

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

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

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

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

pub fn clear_os_version(&mut self)[src]

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

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

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

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

Trait Implementations

impl Clear for Version[src]

impl Clone for Version[src]

impl Debug for Version[src]

impl Default for Version[src]

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

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

impl From<Version> for RawControlPacket[src]

impl Message for Version[src]

impl PartialEq<Version> for Version[src]

impl ProtobufValue for Version[src]

impl StructuralPartialEq for Version[src]

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

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<Bytes> for Version[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

impl TryFrom<RawControlPacket> for Version[src]

type Error = ProtobufError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Version

impl Send for Version

impl Sync for Version

impl Unpin for Version

impl UnwindSafe for Version

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.