Trait dvcompute::simulation::process::IntoProcess[][src]

pub trait IntoProcess {
    type Process: Process<Item = Self::Item>;
    type Item;
    fn into_process(self) -> Self::Process;
}
Expand description

Allows converting to Process computations.

Associated Types

The target computation.

The type of item that is returned by the computation.

Required methods

Convert to the Process computation.

Implementors