pub trait AuthorisationCombine: Sized {
type Output;
// Provided method
fn combine(self) -> Authorisation<Self::Output> { ... }
}Required Associated Types§
Provided Methods§
fn combine(self) -> Authorisation<Self::Output>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".