stack_frame_allocators 1.1.2

A set of allocators based off the concept of the stack and creating "Frames". Push frames onto the Stack, push values onto Frames, and pop entire Frames and their items
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![warn(missing_docs)]
#![feature(pointer_is_aligned_to)]
#![feature(ptr_as_ref_unchecked)]

//! 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(crate) mod block_tail;
pub mod stack_frame_allocator;
pub mod stack_frame_dict_allocator;
pub(crate) mod stack_frame_header;
pub mod stack_ref;
pub(crate) mod stack_size;