Struct wanikani::model::Collection [] [src]

pub struct Collection<T> {
    pub object: String,
    pub url: String,
    pub data_updated_at: Option<DateTime<Utc>>,
    pub pages: Pages,
    pub total_count: u32,
    pub data: Vec<Report<T>>,
}

Fields

Trait Implementations

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

[src]

Formats the value using the given formatter. Read more

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

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

Auto Trait Implementations

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

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