Skip to main content

Crate sigma_bounded

Crate sigma_bounded 

Source
Expand description

Bounded Vec, String, and BTreeMap for alloc or [heapless].

Part of the Sigma dbc-rs embedded-first story: pick alloc (default) or heapless (default-features = false) so firmware policy matches dbc-rs without duplicating collection wrappers elsewhere.

Re-exports§

pub use error::Error;
pub use error::Result;

Modules§

error
Errors from bounded collection operations.

Structs§

BTreeMap
An ordered map based on a B-Tree (with alloc) or a linear map (with heapless).
String
A UTF-8–encoded, growable string.
Vec
A contiguous growable array type.