Struct librespot_protocol::keyexchange::ClientHello[][src]

pub struct ClientHello {
    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 ClientHello[src]

pub fn new() -> ClientHello[src]

pub fn get_build_info(&self) -> &BuildInfo[src]

pub fn clear_build_info(&mut self)[src]

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

pub fn set_build_info(&mut self, v: BuildInfo)[src]

pub fn mut_build_info(&mut self) -> &mut BuildInfo[src]

pub fn take_build_info(&mut self) -> BuildInfo[src]

pub fn get_fingerprints_supported(&self) -> &[Fingerprint][src]

pub fn clear_fingerprints_supported(&mut self)[src]

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

pub fn mut_fingerprints_supported(&mut self) -> &mut Vec<Fingerprint>[src]

pub fn take_fingerprints_supported(&mut self) -> Vec<Fingerprint>[src]

pub fn get_cryptosuites_supported(&self) -> &[Cryptosuite][src]

pub fn clear_cryptosuites_supported(&mut self)[src]

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

pub fn mut_cryptosuites_supported(&mut self) -> &mut Vec<Cryptosuite>[src]

pub fn take_cryptosuites_supported(&mut self) -> Vec<Cryptosuite>[src]

pub fn get_powschemes_supported(&self) -> &[Powscheme][src]

pub fn clear_powschemes_supported(&mut self)[src]

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

pub fn mut_powschemes_supported(&mut self) -> &mut Vec<Powscheme>[src]

pub fn take_powschemes_supported(&mut self) -> Vec<Powscheme>[src]

pub fn get_login_crypto_hello(&self) -> &LoginCryptoHelloUnion[src]

pub fn clear_login_crypto_hello(&mut self)[src]

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

pub fn set_login_crypto_hello(&mut self, v: LoginCryptoHelloUnion)[src]

pub fn mut_login_crypto_hello(&mut self) -> &mut LoginCryptoHelloUnion[src]

pub fn take_login_crypto_hello(&mut self) -> LoginCryptoHelloUnion[src]

pub fn get_client_nonce(&self) -> &[u8][src]

pub fn clear_client_nonce(&mut self)[src]

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

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

pub fn mut_client_nonce(&mut self) -> &mut Vec<u8>[src]

pub fn take_client_nonce(&mut self) -> Vec<u8>[src]

pub fn get_padding(&self) -> &[u8][src]

pub fn clear_padding(&mut self)[src]

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

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

pub fn mut_padding(&mut self) -> &mut Vec<u8>[src]

pub fn take_padding(&mut self) -> Vec<u8>[src]

pub fn get_feature_set(&self) -> &FeatureSet[src]

pub fn clear_feature_set(&mut self)[src]

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

pub fn set_feature_set(&mut self, v: FeatureSet)[src]

pub fn mut_feature_set(&mut self) -> &mut FeatureSet[src]

pub fn take_feature_set(&mut self) -> FeatureSet[src]

Trait Implementations

impl Clear for ClientHello[src]

impl Clone for ClientHello[src]

impl Debug for ClientHello[src]

impl Default for ClientHello[src]

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

impl Message for ClientHello[src]

impl PartialEq<ClientHello> for ClientHello[src]

impl ProtobufValue for ClientHello[src]

impl StructuralPartialEq for ClientHello[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.