Expand description
Re-exports§
Modules§
- hash_
map - A hash map without
Drop, that usesFxHasherto 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
BoxwithoutDrop, which stores its data in the arena allocator. - Vec
- A
VecwithoutDrop, 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
Fromtrait. - GetAddress
- Trait for getting the memory address of an AST node.
- IntoIn
- This trait works similarly to the standard library
Intotrait. It is similar toFromInis reflective, AFromInimplementation also implicitly implementsIntoInfor the opposite type.