pub trait MultiTry<U> {
type Output;
// Required method
fn and_try(self, other: Result<U, FederationError>) -> Self::Output;
}Required Associated Types§
Required Methods§
fn and_try(self, other: Result<U, FederationError>) -> Self::Output
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".