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

pub trait Disposable {
    fn into_event(self) -> DisposableEvent<Self>
    where
        Self: Sized
, { ... }
fn merge<U>(self, other: U) -> Merge<Self, U>
    where
        Self: Sized,
        U: Disposable
, { ... }
fn into_boxed(self) -> DisposableBox
    where
        Self: Sized + 'static
, { ... } }
Expand description

The computation that disposes the observable subscription.

Provided methods

Convert to the Event computation.

Merge with another Disposable computation.

Convert into a boxed representation.

Implementors