Trait dvcompute::simulation::observable::observer::IntoObserver[][src]

pub trait IntoObserver {
    type Observer: Observer<Message = Self::Message, Item = Self::Item>;
    type Message;
    type Item;
    fn into_observer(self) -> Self::Observer;
}
Expand description

Allows converting to Observer computations.

Associated Types

The target computation.

The type of messages that are processed by the observer.

The type of items that the observer returns.

Required methods

Convert to the Observer computation.

Implementors