Type Alias roux::response::BasicListing

source ·
pub type BasicListing<T> = BasicThing<Listing<BasicThing<T>>>;
Expand description

Often times a basic thing will have this structure.

Aliased Type§

struct BasicListing<T> {
    pub kind: Option<String>,
    pub data: Listing<BasicThing<T>>,
}

Fields§

§kind: Option<String>

An identifier that specifies the type of object that this is.

§data: Listing<BasicThing<T>>

The data contained by this struct. This will vary depending on the type parameter because each endpoint returns different contents.