Struct nyx_space::io::scenario::OdpSerde[][src]

pub struct OdpSerde {
    pub navigation_prop: String,
    pub measurements: String,
    pub initial_estimate: String,
    pub msr_noise: Vec<f64>,
    pub snc: Option<Vec<f64>>,
    pub snc_disable: Option<String>,
    pub snc_decay: Option<Vec<String>>,
    pub ekf_msr_trigger: Option<usize>,
    pub ekf_disable_time: Option<Duration>,
    pub output: Option<String>,
}

Fields

navigation_prop: String

Name of the navigation propagator

measurements: String

Name of the measurement generator/reader

initial_estimate: String

Name of the initial estimate name

msr_noise: Vec<f64>

Measurement noise

snc: Option<Vec<f64>>

Optional SNC

snc_disable: Option<String>

Optional SNC turn-off time

snc_decay: Option<Vec<String>>

Optional SNC exponential decay

ekf_msr_trigger: Option<usize>

Set the number of measurements to switch to an EKF

ekf_disable_time: Option<Duration>

Set the acceptable time between measurements

output: Option<String>

An optional output of a NavSolution

Trait Implementations

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

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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