Struct spaceapi::Status [] [src]

pub struct Status {
    pub api: String,
    pub space: String,
    pub logo: String,
    pub url: String,
    pub location: Location,
    pub contact: Contact,
    pub spacefed: Option<Spacefed>,
    pub projects: Option<Vec<String>>,
    pub cam: Option<Vec<String>>,
    pub feeds: Option<Feeds>,
    pub events: Option<Vec<Event>>,
    pub radio_show: Option<Vec<RadioShow>>,
    pub cache: Option<Cache>,
    pub issue_report_channels: Vec<String>,
    pub state: State,
    pub sensors: Option<Sensors>,
    pub ext_versions: Option<HashMap<String, String>>,
}

The main Space API status object.

Fields

Methods

impl Status
[src]

Create a new Status object with only the absolutely required fields.

Trait Implementations

impl Default for Status
[src]

Returns the "default value" for a type. Read more

impl Debug for Status
[src]

Formats the value using the given formatter.

impl Clone for Status
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Status
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Serialize for Status
[src]

Serializes this value into this serializer.

impl Deserialize for Status
[src]

Deserialize this value given this Deserializer.