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

pub struct Search<'dt> {
    pub query: SearchQuery<'dt>,
    pub total_results: Option<u32>,
    pub start_index: Option<u32>,
    pub iterms_per_page: Option<u32>,
    pub artistmatches: Option<SearchData<'dt>>,
}

Fields

query: SearchQuery<'dt>total_results: Option<u32>start_index: Option<u32>iterms_per_page: Option<u32>artistmatches: Option<SearchData<'dt>>

Methods

impl<'dt> Search<'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,
    limit: Option<u32>,
    page: Option<u32>
) -> Request<'rq, Params<'rq>>
[src]

Trait Implementations

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

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

impl<'dt> Into<Search<'dt>> for _Search<'dt>[src]

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

type Outer = _Search<'dt>

Auto Trait Implementations

impl<'dt> RefUnwindSafe for Search<'dt>

impl<'dt> Send for Search<'dt>

impl<'dt> Sync for Search<'dt>

impl<'dt> Unpin for Search<'dt>

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