Struct librespot_protocol::metadata::Album[][src]

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

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl Album[src]

pub fn new() -> Album[src]

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

pub fn clear_gid(&mut self)[src]

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

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

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

pub fn take_gid(&mut self) -> Vec<u8>[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_artist(&self) -> &[Artist][src]

pub fn clear_artist(&mut self)[src]

pub fn set_artist(&mut self, v: RepeatedField<Artist>)[src]

pub fn mut_artist(&mut self) -> &mut RepeatedField<Artist>[src]

pub fn take_artist(&mut self) -> RepeatedField<Artist>[src]

pub fn get_typ(&self) -> Album_Type[src]

pub fn clear_typ(&mut self)[src]

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

pub fn set_typ(&mut self, v: Album_Type)[src]

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

pub fn clear_label(&mut self)[src]

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

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

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

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

pub fn get_date(&self) -> &Date[src]

pub fn clear_date(&mut self)[src]

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

pub fn set_date(&mut self, v: Date)[src]

pub fn mut_date(&mut self) -> &mut Date[src]

pub fn take_date(&mut self) -> Date[src]

pub fn get_popularity(&self) -> i32[src]

pub fn clear_popularity(&mut self)[src]

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

pub fn set_popularity(&mut self, v: i32)[src]

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

pub fn clear_genre(&mut self)[src]

pub fn set_genre(&mut self, v: RepeatedField<String>)[src]

pub fn mut_genre(&mut self) -> &mut RepeatedField<String>[src]

pub fn take_genre(&mut self) -> RepeatedField<String>[src]

pub fn get_cover(&self) -> &[Image][src]

pub fn clear_cover(&mut self)[src]

pub fn set_cover(&mut self, v: RepeatedField<Image>)[src]

pub fn mut_cover(&mut self) -> &mut RepeatedField<Image>[src]

pub fn take_cover(&mut self) -> RepeatedField<Image>[src]

pub fn get_external_id(&self) -> &[ExternalId][src]

pub fn clear_external_id(&mut self)[src]

pub fn set_external_id(&mut self, v: RepeatedField<ExternalId>)[src]

pub fn mut_external_id(&mut self) -> &mut RepeatedField<ExternalId>[src]

pub fn take_external_id(&mut self) -> RepeatedField<ExternalId>[src]

pub fn get_disc(&self) -> &[Disc][src]

pub fn clear_disc(&mut self)[src]

pub fn set_disc(&mut self, v: RepeatedField<Disc>)[src]

pub fn mut_disc(&mut self) -> &mut RepeatedField<Disc>[src]

pub fn take_disc(&mut self) -> RepeatedField<Disc>[src]

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

pub fn clear_review(&mut self)[src]

pub fn set_review(&mut self, v: RepeatedField<String>)[src]

pub fn mut_review(&mut self) -> &mut RepeatedField<String>[src]

pub fn take_review(&mut self) -> RepeatedField<String>[src]

pub fn get_restriction(&self) -> &[Restriction][src]

pub fn clear_restriction(&mut self)[src]

pub fn set_restriction(&mut self, v: RepeatedField<Restriction>)[src]

pub fn mut_restriction(&mut self) -> &mut RepeatedField<Restriction>[src]

pub fn take_restriction(&mut self) -> RepeatedField<Restriction>[src]

pub fn get_sale_period(&self) -> &[SalePeriod][src]

pub fn clear_sale_period(&mut self)[src]

pub fn set_sale_period(&mut self, v: RepeatedField<SalePeriod>)[src]

pub fn mut_sale_period(&mut self) -> &mut RepeatedField<SalePeriod>[src]

pub fn take_sale_period(&mut self) -> RepeatedField<SalePeriod>[src]

pub fn get_cover_group(&self) -> &ImageGroup[src]

pub fn clear_cover_group(&mut self)[src]

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

pub fn set_cover_group(&mut self, v: ImageGroup)[src]

pub fn mut_cover_group(&mut self) -> &mut ImageGroup[src]

pub fn take_cover_group(&mut self) -> ImageGroup[src]

Trait Implementations

impl Clear for Album[src]

impl Clone for Album[src]

impl Debug for Album[src]

impl Default for Album[src]

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

impl Message for Album[src]

impl PartialEq<Album> for Album[src]

impl ProtobufValue for Album[src]

impl StructuralPartialEq for Album[src]

Auto Trait Implementations

impl RefUnwindSafe for Album

impl Send for Album

impl Sync for Album

impl Unpin for Album

impl UnwindSafe for Album

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.