[][src]Struct lastfm_parse_rs::structs::artist::Similar2

pub struct Similar2<'dt> {
    pub name: Cow<'dt, str>,
    pub mbid: Option<&'dt str>,
    pub similar_match: f32,
    pub url: Url<'dt>,
    pub image: Vec<Image<'dt>>,
    pub streamable: Option<u32>,
}

Fields

name: Cow<'dt, str>mbid: Option<&'dt str>similar_match: f32url: Url<'dt>image: Vec<Image<'dt>>streamable: Option<u32>

Trait Implementations

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

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

Auto Trait Implementations

impl<'dt> RefUnwindSafe for Similar2<'dt>

impl<'dt> Send for Similar2<'dt>

impl<'dt> Sync for Similar2<'dt>

impl<'dt> Unpin for Similar2<'dt>

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