[][src]Trait alloc_stdlib::SliceWrapper

pub trait SliceWrapper<T> {
    fn slice(&self) -> &[T];

    fn len(&self) -> usize { ... }
}

Required methods

Important traits for &'_ mut [u8]
fn slice(&self) -> &[T]

Loading content...

Provided methods

fn len(&self) -> usize

Loading content...

Implementors

impl<'a, T> SliceWrapper<T> for AllocatedStackMemory<'a, T> where
    T: 'a, 
[src]

impl<'a, T: 'a> SliceWrapper<&'a mut [T]> for HeapPrealloc<'a, T>

impl<T> SliceWrapper<T> for WrapBox<T>[src]

Loading content...