StackExt

Trait StackExt 

Source
trait StackExt: Stack {
    // Provided method
    fn size(&self) -> usize { ... }
}
Expand description

Convenience extension for [Stack] that exposes the total mapped size.

Provided Methods§

Source

fn size(&self) -> usize

Returns the total size of the stack mapping (including guard page).

Implementors§

Source§

impl<T: Stack> StackExt for T