Trait dvcompute::simulation::parameter::IntoParameter[][src]

pub trait IntoParameter {
    type Parameter: Parameter<Item = Self::Item>;
    type Item;
    fn into_parameter(self) -> Self::Parameter;
}
Expand description

Allows converting to Parameter computations.

Associated Types

The target computation.

The type of item that is returned by the computation.

Required methods

Convert to the Parameter computation.

Implementors