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§
Required Methods§
Sourcefn into_process(self) -> Self::Process
fn into_process(self) -> Self::Process
Convert to the Process computation.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".