pub struct Satellite {
pub created: OffsetDateTime,
pub modified: Option<OffsetDateTime>,
pub name: String,
pub description: String,
pub norad_cat_id: Option<u32>,
pub tle: Option<TwoLineElement>,
pub internal_meta_data: Option<HashMap<String, String>>,
pub account_name: String,
pub meta_data: Option<HashMap<String, String>>,
pub links: HashMap<String, Url>,
}
Expand description
The Freedom API representation of a satellite.
Fields§
§created: OffsetDateTime
§modified: Option<OffsetDateTime>
§name: String
§description: String
§norad_cat_id: Option<u32>
§tle: Option<TwoLineElement>
§internal_meta_data: Option<HashMap<String, String>>
§account_name: String
§meta_data: Option<HashMap<String, String>>
§links: HashMap<String, Url>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Satellite
impl<'de> Deserialize<'de> for Satellite
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<Satellite, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<Satellite, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for Satellite
impl Serialize for Satellite
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for Satellite
impl StructuralPartialEq for Satellite
Auto Trait Implementations§
impl Freeze for Satellite
impl RefUnwindSafe for Satellite
impl Send for Satellite
impl Sync for Satellite
impl Unpin for Satellite
impl UnwindSafe for Satellite
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.