Struct librespot_protocol::playlist4meta::ListAttributes[][src]

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

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl ListAttributes[src]

pub fn new() -> ListAttributes[src]

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

pub fn clear_name(&mut self)[src]

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

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

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

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

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

pub fn clear_description(&mut self)[src]

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

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

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

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

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

pub fn clear_picture(&mut self)[src]

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

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

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

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

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

pub fn clear_collaborative(&mut self)[src]

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

pub fn set_collaborative(&mut self, v: bool)[src]

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

pub fn clear_pl3_version(&mut self)[src]

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

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

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

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

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

pub fn clear_deleted_by_owner(&mut self)[src]

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

pub fn set_deleted_by_owner(&mut self, v: bool)[src]

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

pub fn clear_restricted_collaborative(&mut self)[src]

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

pub fn set_restricted_collaborative(&mut self, v: bool)[src]

pub fn get_deprecated_client_id(&self) -> i64[src]

pub fn clear_deprecated_client_id(&mut self)[src]

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

pub fn set_deprecated_client_id(&mut self, v: i64)[src]

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

pub fn clear_public_starred(&mut self)[src]

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

pub fn set_public_starred(&mut self, v: bool)[src]

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

pub fn clear_client_id(&mut self)[src]

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

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

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

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

Trait Implementations

impl Clear for ListAttributes[src]

impl Clone for ListAttributes[src]

impl Debug for ListAttributes[src]

impl Default for ListAttributes[src]

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

impl Message for ListAttributes[src]

impl PartialEq<ListAttributes> for ListAttributes[src]

impl ProtobufValue for ListAttributes[src]

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