Struct librespot_protocol::authentication::SystemInfo[][src]

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

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl SystemInfo[src]

pub fn new() -> SystemInfo[src]

pub fn get_cpu_family(&self) -> CpuFamily[src]

pub fn clear_cpu_family(&mut self)[src]

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

pub fn set_cpu_family(&mut self, v: CpuFamily)[src]

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

pub fn clear_cpu_subtype(&mut self)[src]

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

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

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

pub fn clear_cpu_ext(&mut self)[src]

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

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

pub fn get_brand(&self) -> Brand[src]

pub fn clear_brand(&mut self)[src]

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

pub fn set_brand(&mut self, v: Brand)[src]

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

pub fn clear_brand_flags(&mut self)[src]

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

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

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

pub fn clear_os(&mut self)[src]

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

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

pub fn get_os_version(&self) -> u32[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: u32)[src]

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

pub fn clear_os_ext(&mut self)[src]

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

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

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

pub fn clear_system_information_string(&mut self)[src]

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

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

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

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

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

pub fn clear_device_id(&mut self)[src]

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

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

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

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

Trait Implementations

impl Clear for SystemInfo[src]

impl Clone for SystemInfo[src]

impl Debug for SystemInfo[src]

impl Default for SystemInfo[src]

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

impl Message for SystemInfo[src]

impl PartialEq<SystemInfo> for SystemInfo[src]

impl ProtobufValue for SystemInfo[src]

impl StructuralPartialEq for SystemInfo[src]

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.