pub trait MultiTry<U> {
type Output;
// Required method
fn and_try(self, other: Result<U, FederationError>) -> Self::Output;
}pub trait MultiTry<U> {
type Output;
// Required method
fn and_try(self, other: Result<U, FederationError>) -> Self::Output;
}