Trait GetManyRef
pub trait GetManyRef<'a>: Sized {
type Output;
}Expand description
Helper trait powering Extensions::get_many_ref: implemented for tuples of
Extension types (up to arity 12).
Required Associated Types§
type Output
type Output
Tuple of Option<&'a T> mirroring the requested tuple of types.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".