pub trait IntoOutput {
type Output;
// Required methods
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§
Required Methods§
Sourcefn into_output(self) -> Self::Output
fn into_output(self) -> Self::Output
Convert an Input
into an appropriate Output
type
Sourcefn merge_output(self, inner: Self::Output) -> Self
fn merge_output(self, inner: Self::Output) -> Self
Convert an Output
type to be used as Input
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.