pub trait IntoCollectionMut<'c> {
    type Collection: 'c + ?Sized;
    fn into_collection_mut(self) -> &'c mut Self::Collection;
}

Associated Types

Required methods

Implementors