[][src]Struct deploy_temp_fringe::SliceStack

pub struct SliceStack<'a>(_);

SliceStack holds a non-guarded stack allocated elsewhere and provided as a mutable slice.

Methods

impl<'a> SliceStack<'a>[src]

pub fn new(slice: &'a mut [u8]) -> SliceStack<'a>[src]

Creates a SliceStack from an existing slice.

This function will automatically align the slice to make it suitable for use as a stack. However this function may panic if the slice is smaller than STACK_ALIGNMENT.

Trait Implementations

impl<'a> Stack for SliceStack<'a>[src]

impl<'a> Debug for SliceStack<'a>[src]

Auto Trait Implementations

impl<'a> Unpin for SliceStack<'a>

impl<'a> Sync for SliceStack<'a>

impl<'a> Send for SliceStack<'a>

impl<'a> RefUnwindSafe for SliceStack<'a>

impl<'a> !UnwindSafe for SliceStack<'a>

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]