pub struct ParameterStep<T: ParameterValue> {
pub plan_ordinal: usize,
pub parameter_ordinal: usize,
pub cycle: usize,
pub value: T,
}Expand description
One emitted parameter value together with its source ordinal provenance.
Fields§
§plan_ordinal: usizeZero-based position in the owning integral plan.
parameter_ordinal: usizeZero-based source ordinal within the parameter series.
cycle: usizeZero-based wrap count for cyclic reuse.
value: TTyped parameter value emitted at this plan ordinal.
Trait Implementations§
Source§impl<T: Clone + ParameterValue> Clone for ParameterStep<T>
impl<T: Clone + ParameterValue> Clone for ParameterStep<T>
Source§fn clone(&self) -> ParameterStep<T>
fn clone(&self) -> ParameterStep<T>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T: Debug + ParameterValue> Debug for ParameterStep<T>
impl<T: Debug + ParameterValue> Debug for ParameterStep<T>
impl<T: Eq + ParameterValue> Eq for ParameterStep<T>
Source§impl<T: PartialEq + ParameterValue> PartialEq for ParameterStep<T>
impl<T: PartialEq + ParameterValue> PartialEq for ParameterStep<T>
impl<T: PartialEq + ParameterValue> StructuralPartialEq for ParameterStep<T>
Auto Trait Implementations§
impl<T> Freeze for ParameterStep<T>where
T: Freeze,
impl<T> RefUnwindSafe for ParameterStep<T>where
T: RefUnwindSafe,
impl<T> Send for ParameterStep<T>where
T: Send,
impl<T> Sync for ParameterStep<T>where
T: Sync,
impl<T> Unpin for ParameterStep<T>where
T: Unpin,
impl<T> UnsafeUnpin for ParameterStep<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for ParameterStep<T>where
T: UnwindSafe,
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