pub struct SimulationIndex {}Expand description
It returns the simulation run index.
Trait Implementations§
Source§impl Clone for SimulationIndex
impl Clone for SimulationIndex
Source§fn clone(&self) -> SimulationIndex
fn clone(&self) -> SimulationIndex
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Parameter for SimulationIndex
impl Parameter for SimulationIndex
Source§fn into_simulation(self) -> ParameterIntoSimulation<Self>where
Self: Sized,
fn into_simulation(self) -> ParameterIntoSimulation<Self>where
Self: Sized,
Convert into the
Simulation computation.Source§fn into_event(self) -> ParameterIntoEvent<Self>where
Self: Sized,
fn into_event(self) -> ParameterIntoEvent<Self>where
Self: Sized,
Convert into the
Event computation.Source§fn into_process(self) -> ParameterIntoProcess<Self>where
Self: Sized,
fn into_process(self) -> ParameterIntoProcess<Self>where
Self: Sized,
Convert to the
Process computation.Source§fn into_composite(self) -> ParameterIntoComposite<Self>where
Self: Sized,
fn into_composite(self) -> ParameterIntoComposite<Self>where
Self: Sized,
Convert into the
Composite computation.Source§fn and_then<U, F>(self, f: F) -> AndThen<Self, U, F>
fn and_then<U, F>(self, f: F) -> AndThen<Self, U, F>
Bind the current computation with its continuation within the resulting computation.
Source§fn map<B, F>(self, f: F) -> Map<Self, B, F>
fn map<B, F>(self, f: F) -> Map<Self, B, F>
Map the current computation using the specified transform.
Source§fn zip<U>(self, other: U) -> Zip<Self, U>
fn zip<U>(self, other: U) -> Zip<Self, U>
Zip the current computation with another one within the resulting computation.
Source§fn into_boxed(self) -> ParameterBox<Self::Item>where
Self: Sized + 'static,
fn into_boxed(self) -> ParameterBox<Self::Item>where
Self: Sized + 'static,
Convert into a boxed value.
Auto Trait Implementations§
impl Freeze for SimulationIndex
impl RefUnwindSafe for SimulationIndex
impl Send for SimulationIndex
impl Sync for SimulationIndex
impl Unpin for SimulationIndex
impl UnwindSafe for SimulationIndex
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