Struct spaceapi::Status

source ·
pub struct Status {
Show 21 fields pub api: Option<String>, pub api_compatibility: Option<Vec<ApiVersion>>, 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 stream: Option<Stream>, pub feeds: Option<Feeds>, pub events: Option<Vec<Event>>, pub radio_show: Option<Vec<RadioShow>>, pub links: Option<Vec<Link>>, pub membership_plans: Option<Vec<MembershipPlan>>, pub cache: Option<Cache>, pub issue_report_channels: Vec<IssueReportChannel>, pub state: Option<State>, pub sensors: Option<Sensors>, pub extensions: BTreeMap<String, Value>,
}
Expand description

The main SpaceAPI status object.

Fields§

§api: Option<String>§api_compatibility: Option<Vec<ApiVersion>>§space: String§url: String§location: Location§contact: Contact§spacefed: Option<Spacefed>§projects: Option<Vec<String>>§cam: Option<Vec<String>>§stream: Option<Stream>§feeds: Option<Feeds>§events: Option<Vec<Event>>§radio_show: Option<Vec<RadioShow>>§links: Option<Vec<Link>>§membership_plans: Option<Vec<MembershipPlan>>§cache: Option<Cache>§issue_report_channels: Vec<IssueReportChannel>§state: Option<State>§sensors: Option<Sensors>§extensions: BTreeMap<String, Value>

Implementations§

source§

impl Status

source

pub fn new<S: Into<String>>( space: S, logo: S, url: S, location: Location, contact: Contact, issue_report_channels: Vec<IssueReportChannel> ) -> Status

👎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§

source§

impl Clone for Status

source§

fn clone(&self) -> Status

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Status

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Status

source§

fn default() -> Status

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Status

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq<Status> for Status

source§

fn eq(&self, other: &Status) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for Status

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for Status

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,