Struct alloc_no_stdlib::AllocatedStackMemory [] [src]

pub struct AllocatedStackMemory<'a, T: 'a> {
    pub mem: &'a mut [T],
}

Fields

Trait Implementations

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

Returns the "default value" for a type. Read more

impl<'a, T: 'a> Index<usize> for AllocatedStackMemory<'a, T>
[src]

The returned type after indexing

The method for the indexing (container[index]) operation

impl<'a, T: 'a> IndexMut<usize> for AllocatedStackMemory<'a, T>
[src]

The method for the mutable indexing (container[index]) operation

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

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