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 extensions: BTreeMap<String, Value>,
}

The main Space API status object.

Fields

Methods

impl Status
[src]

Deprecated since 0.5.0

: Please use the StatusBuilder or a struct expression instead

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]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for Status
[src]

Deserialize this value from the given Serde deserializer. Read more