pub trait GetAllMut<I>: Seal {
type Output;
// Required method
fn get_all_mut(self, ident: I) -> Option<Self::Output>;
}Expand description
A trait that defines all the types defines how to get all
of mutable references out of the heterogeneous list
of IdCells.
Required Associated Types§
Required Methods§
Sourcefn get_all_mut(self, ident: I) -> Option<Self::Output>
fn get_all_mut(self, ident: I) -> Option<Self::Output>
Gets all mutable references from the IdCells, returns
None if some of the types overlap