Expand description
Re-exports§
Modules§
- hash_
map - A hash map without
Drop
, that usesFxHasher
to hash keys, and stores data in arena allocator. - string
- Arena String.
Structs§
- Address
- Memory address of an AST node in arena.
- Allocator
- A bump-allocated memory arena.
- Box
- A
Box
withoutDrop
, which stores its data in the arena allocator. - Vec
- A
Vec
withoutDrop
, which stores its data in the arena allocator.
Traits§
- CloneIn
- A trait to explicitly clone an object into an arena allocator.
- FromIn
- This trait works similarly to the standard library
From
trait, It comes with a similar implementation containing blanket implementation forIntoIn
, reflective implementation and a bunch of primitive conversions from Rust types to their arena equivalent. - GetAddress
- Trait for getting the memory address of an AST node.
- IntoIn
- This trait works similarly to the standard library
Into
trait. It is similar toFromIn
is reflective, AFromIn
implementation also implicitly implementsIntoIn
for the opposite type.