Trait dvcompute::simulation::event::IntoEvent[][src]

pub trait IntoEvent {
    type Event: Event<Item = Self::Item>;
    type Item;
    fn into_event(self) -> Self::Event;
}
Expand description

Allows converting to Event computations.

Associated Types

The target computation.

The type of item that is returned by the computation.

Required methods

Convert to the Event computation.

Implementors