Struct librespot_metadata::Episode[][src]

pub struct Episode {
    pub id: SpotifyId,
    pub name: String,
    pub external_url: String,
    pub duration: i32,
    pub language: String,
    pub show: SpotifyId,
    pub files: HashMap<FileFormat, FileId>,
    pub covers: Vec<FileId>,
    pub available: bool,
    pub explicit: bool,
}

Fields

id: SpotifyIdname: Stringexternal_url: Stringduration: i32language: Stringshow: SpotifyIdfiles: HashMap<FileFormat, FileId>covers: Vec<FileId>available: boolexplicit: bool

Trait Implementations

impl Clone for Episode[src]

impl Debug for Episode[src]

impl Metadata for Episode[src]

type Message = Episode

Auto Trait Implementations

impl RefUnwindSafe for Episode

impl Send for Episode

impl Sync for Episode

impl Unpin for Episode

impl UnwindSafe for Episode

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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,