Struct librespot_protocol::metadata::Biography[][src]

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

Fields

unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl Biography[src]

pub fn new() -> Biography[src]

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

pub fn clear_text(&mut self)[src]

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

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

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

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

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

pub fn clear_portrait(&mut self)[src]

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

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

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

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

pub fn clear_portrait_group(&mut self)[src]

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

pub fn mut_portrait_group(&mut self) -> &mut RepeatedField<ImageGroup>[src]

pub fn take_portrait_group(&mut self) -> RepeatedField<ImageGroup>[src]

Trait Implementations

impl Clear for Biography[src]

impl Clone for Biography[src]

impl Debug for Biography[src]

impl Default for Biography[src]

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

impl Message for Biography[src]

impl PartialEq<Biography> for Biography[src]

impl ProtobufValue for Biography[src]

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