[][src]Struct deploy_temp_fringe::OsStack

pub struct OsStack { /* fields omitted */ }

OsStack holds a guarded stack allocated using the operating system's anonymous memory mapping facility.

Methods

impl OsStack[src]

pub fn new(size: usize) -> Result<OsStack, IoError>[src]

Allocates a new stack with at least size accessible bytes. size is rounded up to an integral number of pages; OsStack::new(0) is legal and allocates the smallest possible stack, consisting of one data page and one guard page.

Trait Implementations

impl Stack for OsStack[src]

impl GuardedStack for OsStack[src]

impl Debug for OsStack[src]

impl Drop for OsStack[src]

impl Send for OsStack[src]

Auto Trait Implementations

impl Unpin for OsStack

impl !Sync for OsStack

impl RefUnwindSafe for OsStack

impl UnwindSafe for OsStack

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]