[][src]Struct graph_rs_types::complextypes::Audio

pub struct Audio {
    pub album: String,
    pub album_artist: String,
    pub artist: String,
    pub bitrate: i64,
    pub composers: String,
    pub copyright: String,
    pub disc: i16,
    pub disc_count: i16,
    pub duration: i64,
    pub genre: String,
    pub has_drm: bool,
    pub is_variable_bitrate: bool,
    pub title: String,
    pub track: i32,
    pub track_count: i32,
    pub year: i32,
}

Fields

album: Stringalbum_artist: Stringartist: Stringbitrate: i64composers: Stringcopyright: Stringdisc: i16disc_count: i16duration: i64genre: Stringhas_drm: boolis_variable_bitrate: booltitle: Stringtrack: i32track_count: i32year: i32

Trait Implementations

impl Eq for Audio[src]

impl Clone for Audio[src]

impl PartialEq<Audio> for Audio[src]

impl Debug for Audio[src]

impl Serialize for Audio[src]

impl<'de> Deserialize<'de> for Audio[src]

Auto Trait Implementations

impl Send for Audio

impl Unpin for Audio

impl Sync for Audio

impl RefUnwindSafe for Audio

impl UnwindSafe for Audio

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]