pub trait TupleTransposeResult1_2<E0, E1> {
type OutTuple<Eo>;
// Required method
fn transpose1<Eo>(self) -> Self::OutTuple<Eo>
where Eo: From<E0> + From<E1>;
}Expand description
Transposes for Result
Required Associated Types§
Required Methods§
Sourcefn transpose1<Eo>(self) -> Self::OutTuple<Eo>
fn transpose1<Eo>(self) -> Self::OutTuple<Eo>
Transposes for Result
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.