2 releases

0.1.1 Jan 29, 2020
0.1.0 Jan 17, 2020

#622 in Memory management

Download history 1336/week @ 2023-12-15 760/week @ 2023-12-22 823/week @ 2023-12-29 1365/week @ 2024-01-05 1438/week @ 2024-01-12 1468/week @ 2024-01-19 1638/week @ 2024-01-26 1223/week @ 2024-02-02 1384/week @ 2024-02-09 1556/week @ 2024-02-16 1672/week @ 2024-02-23 1826/week @ 2024-03-01 1834/week @ 2024-03-08 1686/week @ 2024-03-15 1672/week @ 2024-03-22 1605/week @ 2024-03-29

7,142 downloads per month
Used in 46 crates (2 directly)

MIT license

15KB
187 lines

alloc-traits

Defines no_std and bare metal usable traits that can be implemented to defined different kinds of allocators, similar to alloc::GlobalAlloc. But unlike the standard library trait they do not presume global uniqueness and static lifetime of the memory resource provider. In return, the allocators are not required to implement the Sync bound and can easily be built without operating system support to be usable.

There are additional independent crates with additional abstractions on-top:

  • static-alloc: A simple allocator drawing from a memory region statically embedded within the compiled binary.
  • without-alloc: A set of data structures (Box, Vec, Rc, ...) that can be allocated from the implementors of the traits defined here.

lib.rs:

Traits to replace or supplement the alloc module in no_std.

Defines traits, similar to alloc::GlobalAlloc, that can be implemented to defined different kinds of allocators. Unlike the standard library one they do not presume global uniqueness and static lifetime of the memory resource provider. In return, the allocators are not required to implement the Sync bound and can easily be built without operating system support to be usable.

There are additional independent crates with additional abstractions on-top:

  • static-alloc: A simple allocator drawing from a memory region statically embedded within the compiled binary.
  • without-alloc: A set of data structures (Box, Vec, Rc, ...) that can be allocated from the implementors of the traits defined here.

No runtime deps