Trait dvcompute::simulation::composite::IntoComposite[][src]

pub trait IntoComposite {
    type Composite: Composite<Item = Self::Item>;
    type Item;
    fn into_composite(self) -> Self::Composite;
}
Expand description

Allows converting to Composite computations.

Associated Types

The target computation.

The type of item that is returned by the computation.

Required methods

Convert to the Composite computation.

Implementors