[][src]Struct deezer::models::Infos

pub struct Infos {
    pub country_iso: String,
    pub country: String,
    pub open: bool,
    pub offers: Vec<Offer>,
}

Contains all the information about the API in the current country.

Examples

let deezer = DeezerClient::new();
let info = deezer.api_info().await?;

Fields

country_iso: String

The current country ISO code

country: String

The current country name

open: bool

Indicates if Deezer is open in the current country or not

offers: Vec<Offer>

An array of available offers in the current country

Trait Implementations

impl Clone for Infos[src]

impl Debug for Infos[src]

impl<'de> Deserialize<'de> for Infos[src]

impl Serialize for Infos[src]

Auto Trait Implementations

impl RefUnwindSafe for Infos

impl Send for Infos

impl Sync for Infos

impl Unpin for Infos

impl UnwindSafe for Infos

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.