Crate nostd_structs

Source
Expand description

Nostd Structs contains data structures and algorithms that are intended to be used in a minimal environment.

This is useful for cases where you are compiling without access to the standard library, such as in embedded environments.

An additional benefit is that, since the memory allocators tend to be tied to the standard library, the data structures in this crate are stack allocated, and do not require a heap. This has performance benefits and leads to predictable memory usage, at the cost of not using memory dynamically.

Modulesยง

algos
Algorithms that are useful, but may be limited due to lack of access to system properties
conversion
Conversion tools for converting various formats and structures
structs
This module contains the structs that are used as primitives within various data structures and algorithms in this crate.