Trait dvcompute::simulation::simulation::IntoSimulation[][src]

pub trait IntoSimulation {
    type Simulation: Simulation<Item = Self::Item>;
    type Item;
    fn into_simulation(self) -> Self::Simulation;
}
Expand description

Allows converting to Simulation computations.

Associated Types

The target computation.

The type of item that is returned by the computation.

Required methods

Convert to the Simulation computation.

Implementors