pub trait SliceWrapperMut<T>: SliceWrapper<T> {
// Required method
fn slice_mut(&mut self) -> &mut [T];
}Required Methods§
Implementations on Foreign Types§
Source§impl<'a, T> SliceWrapperMut<&'a mut [T]> for HeapPrealloc<'a, T>where
T: 'a,
impl<'a, T> SliceWrapperMut<&'a mut [T]> for HeapPrealloc<'a, T>where
T: 'a,
Source§impl<Ty> SliceWrapperMut<Ty> for MemoryBlock<Ty>where
Ty: Default,
Available on crate feature std only.
impl<Ty> SliceWrapperMut<Ty> for MemoryBlock<Ty>where
Ty: Default,
Available on crate feature
std only.