[][src]Struct lastfm_parse_rs::structs::user::User

pub struct User<'dt> {
    pub name: Cow<'dt, str>,
    pub url: Url<'dt>,
    pub country: Cow<'dt, str>,
    pub playcount: u32,
    pub playlists: u32,
    pub bootstrap: u32,
    pub registered: Date2<'dt>,
    pub image: Vec<Image<'dt>>,
    pub recenttrack: Option<Track2<'dt>>,
    pub subscriber: Option<&'dt str>,
    pub u_type: Option<&'dt str>,
    pub scrobblesource: Option<&'dt str>,
}

Fields

name: Cow<'dt, str>url: Url<'dt>country: Cow<'dt, str>playcount: u32playlists: u32bootstrap: u32registered: Date2<'dt>image: Vec<Image<'dt>>recenttrack: Option<Track2<'dt>>subscriber: Option<&'dt str>u_type: Option<&'dt str>scrobblesource: Option<&'dt str>

Trait Implementations

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

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

Auto Trait Implementations

impl<'dt> RefUnwindSafe for User<'dt>

impl<'dt> Send for User<'dt>

impl<'dt> Sync for User<'dt>

impl<'dt> Unpin for User<'dt>

impl<'dt> UnwindSafe for User<'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.