pub trait IntoOutput {
    type Output;

    fn into_output(self) -> Self::Output;
    fn merge_output(self, inner: Self::Output) -> Self;
}
Expand description

Convert an Input into an appropriate Output type

Required Associated Types

Output type

Required Methods

Convert an Input into an appropriate Output type

Convert an Output type to be used as Input

Implementations on Foreign Types

Implementors