Struct fringe::OwnedStack [] [src]

pub struct OwnedStack(_);

OwnedStack holds a non-guarded, heap-allocated stack.

Methods

impl OwnedStack
[src]

Allocates a new stack with exactly size accessible bytes and alignment appropriate for the current platform 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 address of the stack. On all modern architectures, the stack grows downwards, so this is the highest address. Read more

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