pub struct Step {Show 15 fields
pub time: i64,
pub temperature: Vec<f64>,
pub collect: Option<bool>,
pub temp_increment: f64,
pub temp_incrementcycle: i64,
pub temp_incrementpoint: Option<i64>,
pub time_increment: i64,
pub time_incrementcycle: i64,
pub time_incrementpoint: Option<i64>,
pub filters: Vec<String>,
pub pcr: bool,
pub quant: bool,
pub tiff: bool,
pub repeat: i64,
pub default_filters: Vec<String>,
}Fields§
§time: i64§temperature: Vec<f64>§collect: Option<bool>§temp_increment: f64§temp_incrementcycle: i64§temp_incrementpoint: Option<i64>§time_increment: i64§time_incrementcycle: i64§time_incrementpoint: Option<i64>§filters: Vec<String>§pcr: bool§quant: bool§tiff: bool§repeat: i64§default_filters: Vec<String>Implementations§
Trait Implementations§
Source§impl ProtoCommand for Step
impl ProtoCommand for Step
fn as_any(&self) -> &dyn Any
fn from_scpicommand( cmd: &Command, ) -> Result<Box<dyn ProtoCommand>, ProtocolParseError>
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnsafeUnpin for Step
impl UnwindSafe for Step
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more