diff --git a/heapless/all.html b/heapless/all.html index 95322572..b647bb74 100644 --- a/heapless/all.html +++ b/heapless/all.html @@ -1,4 +1,4 @@ -List of all items in this crate

List of all items[] +List of all items in this crate

List of all items[]

Structs

Enums

Traits

Typedefs

diff --git a/heapless/index.html b/heapless/index.html index baa03f59..1ee4a023 100644 --- a/heapless/index.html +++ b/heapless/index.html @@ -1,4 +1,4 @@ -heapless - Rust

Crate heapless[][src]

Expand description

static friendly data structures that don’t require dynamic memory allocation

+heapless - Rust

Crate heapless[][src]

Expand description

static friendly data structures that don’t require dynamic memory allocation

The core principle behind heapless is that its data structures are backed by a static memory allocation. For example, you can think of heapless::Vec as an alternative version of std::Vec with fixed capacity and that can’t be re-allocated on the fly (e.g. via push).