pub trait InErrorGroup {
type ReturnOperand<G>
where G: ErrorGroup,
Self: Apply<InErrorGroupOperation<G>>;
// Required method
fn in_error_group<G>(&self) -> Self::ReturnOperand<G>
where G: ErrorGroup,
Self: Apply<InErrorGroupOperation<G>>;
}Required Associated Types§
type ReturnOperand<G> where G: ErrorGroup, Self: Apply<InErrorGroupOperation<G>>
Required Methods§
fn in_error_group<G>(&self) -> Self::ReturnOperand<G>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".