Struct modio::ModioListResponse[][src]

pub struct ModioListResponse<T> {
    pub data: Vec<T>,
    pub count: u32,
    pub total: u32,
    pub limit: u32,
    pub offset: u32,
}

See the Multiple Item Response docs for more informations.

Fields

Trait Implementations

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

Formats the value using the given formatter. Read more

impl<T> Index<usize> for ModioListResponse<T>
[src]

The returned type after indexing.

Performs the indexing (container[index]) operation.

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

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

impl<'a, T> IntoIterator for &'a ModioListResponse<T>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more

Auto Trait Implementations

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

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