Trait dvcompute::simulation::observable::disposable::IntoDisposable[][src]

pub trait IntoDisposable {
    type Disposable: Disposable;
    fn into_disposable(self) -> Self::Disposable;
}
Expand description

Allows converting to Disposable computations.

Associated Types

Required methods

Convert to the Disposable computation.

Implementors