Struct nyx_space::io::ccsds::tdm::Metadata

source ·
pub struct Metadata {
Show 57 fields pub track_id: Option<String>, pub time_system: TimeSystem, pub start_time: Option<String>, pub stop_time: Option<String>, pub participant_1: Option<String>, pub participant_2: Option<String>, pub participant_3: Option<String>, pub participant_4: Option<String>, pub participant_5: Option<String>, pub mode: Option<TrackingMode>, pub path: Option<String>, pub path_1: Option<String>, pub path_2: Option<String>, pub ephemeris_1: Option<String>, pub ephemeris_2: Option<String>, pub ephemeris_3: Option<String>, pub ephemeris_4: Option<String>, pub ephemeris_5: Option<String>, pub transmit_band: Option<Band>, pub receive_band: Option<Band>, pub turnaround_denominator: Option<i32>, pub turnaround_numerator: Option<i32>, pub timetag_ref: Option<TimetagRef>, pub integration_interval: Option<f64>, pub integration_ref: Option<IntegrationRef>, pub freq_offset: Option<f64>, pub range_mode: Option<RangeMode>, pub range_modulus: Option<f64>, pub range_units: Option<RangeUnit>, pub angle_type: Option<String>, pub reference_frame: Option<String>, pub interpolation: Option<Interpolation>, pub interpolation_degree: Option<u32>, pub doppler_count_bias: Option<f64>, pub doppler_count_scale: Option<u32>, pub transmit_delay_1: Option<f64>, pub transmit_delay_2: Option<f64>, pub transmit_delay_3: Option<f64>, pub transmit_delay_4: Option<f64>, pub transmit_delay_5: Option<f64>, pub receive_delay_1: Option<f64>, pub receive_delay_2: Option<f64>, pub receive_delay_3: Option<f64>, pub receive_delay_4: Option<f64>, pub receive_delay_5: Option<f64>, pub data_quality: Option<DataQuality>, pub correction_angle_1: Option<f64>, pub correction_angle_2: Option<f64>, pub correction_doppler: Option<f64>, pub correction_mag: Option<f64>, pub correction_range: Option<f64>, pub correction_rcs: Option<f64>, pub correction_receive: Option<f64>, pub correction_transmit: Option<f64>, pub correction_aberration_yearly: Option<f64>, pub correction_aberration_diurnal: Option<f64>, pub corrections_applied: Option<YesNo>, /* private fields */
}

Fields§

§track_id: Option<String>§time_system: TimeSystem§start_time: Option<String>§stop_time: Option<String>§participant_1: Option<String>§participant_2: Option<String>§participant_3: Option<String>§participant_4: Option<String>§participant_5: Option<String>§mode: Option<TrackingMode>§path: Option<String>§path_1: Option<String>§path_2: Option<String>§ephemeris_1: Option<String>§ephemeris_2: Option<String>§ephemeris_3: Option<String>§ephemeris_4: Option<String>§ephemeris_5: Option<String>§transmit_band: Option<Band>§receive_band: Option<Band>§turnaround_denominator: Option<i32>§turnaround_numerator: Option<i32>§timetag_ref: Option<TimetagRef>§integration_interval: Option<f64>§integration_ref: Option<IntegrationRef>§freq_offset: Option<f64>§range_mode: Option<RangeMode>§range_modulus: Option<f64>§range_units: Option<RangeUnit>§angle_type: Option<String>§reference_frame: Option<String>§interpolation: Option<Interpolation>§interpolation_degree: Option<u32>§doppler_count_bias: Option<f64>§doppler_count_scale: Option<u32>§transmit_delay_1: Option<f64>§transmit_delay_2: Option<f64>§transmit_delay_3: Option<f64>§transmit_delay_4: Option<f64>§transmit_delay_5: Option<f64>§receive_delay_1: Option<f64>§receive_delay_2: Option<f64>§receive_delay_3: Option<f64>§receive_delay_4: Option<f64>§receive_delay_5: Option<f64>§data_quality: Option<DataQuality>§correction_angle_1: Option<f64>§correction_angle_2: Option<f64>§correction_doppler: Option<f64>§correction_mag: Option<f64>§correction_range: Option<f64>§correction_rcs: Option<f64>§correction_receive: Option<f64>§correction_transmit: Option<f64>§correction_aberration_yearly: Option<f64>§correction_aberration_diurnal: Option<f64>§corrections_applied: Option<YesNo>

Implementations§

Trait Implementations§

source§

impl Debug for Metadata

source§

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

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

impl Default for Metadata

source§

fn default() -> Metadata

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

impl<'de> Deserialize<'de> for Metadata

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<Metadata> for Metadata

source§

fn eq(&self, other: &Metadata) -> 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 YaDeserialize for Metadata

source§

fn deserialize<R: Read>(reader: &mut Deserializer<R>) -> Result<Self, String>

source§

impl YaSerialize for Metadata

source§

fn serialize<W: Write>(&self, writer: &mut Serializer<W>) -> Result<(), String>

source§

fn serialize_attributes( &self, source_attributes: Vec<OwnedAttribute>, source_namespace: Namespace ) -> Result<(Vec<OwnedAttribute>, Namespace), String>

source§

impl StructuralPartialEq for Metadata

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,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
§

impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,

§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · 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.
const: unstable · source§

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

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

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