[][src]Struct lastfm_parse_rs::structs::track::Report

pub struct Report<'dt> {
    pub artist: Field<'dt>,
    pub album_artist: Field<'dt>,
    pub album: Field<'dt>,
    pub track: Field<'dt>,
    pub timestamp: UnixTimestamp,
    pub ignored_message: IgnoredMessage<'dt>,
}

Fields

artist: Field<'dt>album_artist: Field<'dt>album: Field<'dt>track: Field<'dt>timestamp: UnixTimestampignored_message: IgnoredMessage<'dt>

Trait Implementations

impl<'dt> Debug for Report<'dt>[src]

impl<'de: 'dt, 'dt> Deserialize<'de> for Report<'dt>[src]

Auto Trait Implementations

impl<'dt> RefUnwindSafe for Report<'dt>

impl<'dt> Send for Report<'dt>

impl<'dt> Sync for Report<'dt>

impl<'dt> Unpin for Report<'dt>

impl<'dt> UnwindSafe for Report<'dt>

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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.