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,
Implementors§
impl<'a, T> SliceWrapperMut<T> for AllocatedStackMemory<'a, T>where
T: 'a,
impl<'a, T: 'a> SliceWrapperMut<&'a mut [T]> for MemPool<'a, T>
impl<T> SliceWrapperMut<T> for brotli_decompressor::brotli_alloc::WrapBox<T>
impl<Ty: Sized + Default> SliceWrapperMut<Ty> for MemoryBlock<Ty>
Available on crate feature
std only.