Trait IntoParameter

Source
pub trait IntoParameter {
    type Parameter: Parameter<Item = Self::Item>;
    type Item;

    // Required method
    fn into_parameter(self) -> Self::Parameter;
}
Expand description

Allows converting to Parameter computations.

Required Associated Types§

Source

type Parameter: Parameter<Item = Self::Item>

The target computation.

Source

type Item

The type of item that is returned by the computation.

Required Methods§

Source

fn into_parameter(self) -> Self::Parameter

Convert to the Parameter computation.

Implementors§