//! A set of Allocators based on the concept of a stack
//! and enforcing memory safety via scopes. These allocators
//! use frames, where values can be pushed onto the frames.
//! The allocators can only pop whole frames and all of its
//! associated values.
pub
pub
pub