Trait dvcompute::simulation::observable::IntoObservable[][src]

pub trait IntoObservable {
    type Observable: Observable<Message = Self::Message>;
    type Message;
    fn into_observable(self) -> Self::Observable;
}
Expand description

Allows converting to Observable computations.

Associated Types

The target computation.

The type of messages about which the computation notifies.

Required methods

Convert to the Observable computation.

Implementors