[][src]Trait alloc_stdlib::SliceWrapper

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

Notable traits for &'_ mut [u8]

impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]
; fn len(&self) -> usize { ... } }

Required methods

fn slice(&self) -> &[T]

Notable traits for &'_ mut [u8]

impl<'_> Write for &'_ mut [u8]impl<'_> Read for &'_ [u8]

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>[src]

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

Loading content...