Struct kitsu::model::Response [] [src]

pub struct Response<T> {
    pub data: T,
    pub links: HashMap<String, String>,
}

Data from a response.

Fields

The full data from a response.

Links relevant to the search.

Trait Implementations

impl<T: Clone> Clone for Response<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 Response<T>
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

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

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