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

pub struct MeasurementSerde {
    pub propagator: Option<String>,
    pub msr_device: Vec<String>,
    pub output: Option<String>,
    pub use_file_if_available: Option<bool>,
}

Fields

propagator: Option<String>

Name of the truth propagator, if unspecified then the output must be specified

msr_device: Vec<String>

Names of the measurement devices to use

output: Option<String>

Name of the output file to store the measurements

use_file_if_available: Option<bool>

Optionally specify whether to use the file if it exists

Trait Implementations

impl<'de> Deserialize<'de> for MeasurementSerde[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>,