Struct fringe::OwnedStack [] [src]

pub struct OwnedStack(_);

OwnedStack allocates on heap and owns a non-guarded stack.

Methods

impl OwnedStack
[src]

Allocates a new stack with exactly size accessible bytes using the default Rust allocator.

Trait Implementations

impl Debug for OwnedStack
[src]

Formats the value using the given formatter.

impl Stack for OwnedStack
[src]

Returns the base of the stack. On all modern architectures, the stack grows downwards, so this is the highest address. Read more

Returns the bottom of the stack. On all modern architectures, the stack grows downwards, so this is the lowest address. Read more