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§
Required Methods§
Sourcefn into_parameter(self) -> Self::Parameter
fn into_parameter(self) -> Self::Parameter
Convert to the Parameter
computation.