Trait GetManyArc
pub trait GetManyArc: Sized {
type Output;
}Expand description
Helper trait powering Extensions::get_many_arc; the owned-Arc
counterpart of GetManyRef.
Required Associated Types§
type Output
type Output
Tuple of Option<Arc<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".