[][src]Struct deezer::models::DeezerArray

pub struct DeezerArray<T> {
    pub data: Vec<T>,
}

Wrapper around deezer array types

Some deezer models return an object with a data property containing the actual array.

Fields

data: Vec<T>

Implementations

impl<T> DeezerArray<T>[src]

pub fn iter(&self) -> Iter<'_, T>[src]

Trait Implementations

impl<T> AsRef<[T]> for DeezerArray<T>[src]

impl<T: Clone> Clone for DeezerArray<T>[src]

impl<T: Debug> Debug for DeezerArray<T>[src]

impl<T> Deref for DeezerArray<T>[src]

type Target = [T]

The resulting type after dereferencing.

impl<'de, T> Deserialize<'de> for DeezerArray<T> where
    T: Deserialize<'de>, 
[src]

impl<T> IntoIterator for DeezerArray<T>[src]

type Item = T

The type of the elements being iterated over.

type IntoIter = IntoIter<Self::Item>

Which kind of iterator are we turning this into?

impl<T> Serialize for DeezerArray<T> where
    T: Serialize
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for DeezerArray<T> where
    T: RefUnwindSafe

impl<T> Send for DeezerArray<T> where
    T: Send

impl<T> Sync for DeezerArray<T> where
    T: Sync

impl<T> Unpin for DeezerArray<T> where
    T: Unpin

impl<T> UnwindSafe for DeezerArray<T> where
    T: UnwindSafe

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.