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

pub struct GetSimilar<'dt> {
    pub artist: Option<Vec<Similar2<'dt>>>,
}

Fields

artist: Option<Vec<Similar2<'dt>>>

Methods

impl<'dt> GetSimilar<'dt>[src]

pub fn request<'rq>(
    base_url: &'rq str,
    api_key: &'rq str,
    secret: Option<&'rq str>,
    session: Option<&'rq str>,
    artist: &'rq str,
    mbid: Option<&'rq str>,
    autocorrect: Option<u32>,
    limit: Option<u32>
) -> Request<'rq, Params<'rq>>
[src]

Trait Implementations

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

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

impl<'dt> Into<GetSimilar<'dt>> for _SimilarList<'dt>[src]

impl<'dt> LastfmType<'dt> for GetSimilar<'dt>[src]

type Outer = _SimilarList<'dt>

Auto Trait Implementations

impl<'dt> RefUnwindSafe for GetSimilar<'dt>

impl<'dt> Send for GetSimilar<'dt>

impl<'dt> Sync for GetSimilar<'dt>

impl<'dt> Unpin for GetSimilar<'dt>

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