Struct librespot_protocol::authentication::AccountInfoFacebook[][src]

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

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl AccountInfoFacebook[src]

pub fn new() -> AccountInfoFacebook[src]

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

pub fn clear_access_token(&mut self)[src]

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

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

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

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

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

pub fn clear_machine_id(&mut self)[src]

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

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

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

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

Trait Implementations

impl Clear for AccountInfoFacebook[src]

impl Clone for AccountInfoFacebook[src]

impl Debug for AccountInfoFacebook[src]

impl Default for AccountInfoFacebook[src]

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

impl Message for AccountInfoFacebook[src]

impl PartialEq<AccountInfoFacebook> for AccountInfoFacebook[src]

impl ProtobufValue for AccountInfoFacebook[src]

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