Trait IntoProcess

Source
pub trait IntoProcess {
    type Process: Process<Item = Self::Item>;
    type Item;

    // Required method
    fn into_process(self) -> Self::Process;
}
Expand description

Allows converting to Process computations.

Required Associated Types§

Source

type Process: Process<Item = Self::Item>

The target computation.

Source

type Item

The type of item that is returned by the computation.

Required Methods§

Source

fn into_process(self) -> Self::Process

Convert to the Process computation.

Implementors§