1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//! This tiny crate defines a simple allocator interface.
//!
//! It is used by `Compact` types in the `compact` crate to allocate space
//! when decompacting from their compact form.
use mem;
/// A trait for all allocators that collections can be generic about
/// An implementation of `Allocator` that allocates using the default heap allocator
///
/// (Uses `Vec::with_capacity internally`)