/*! Specialized containers.
The `storage` module provides containers for use in other modules.
The containers support both pre-allocated memory, without the `std`
or `alloc` crates being available, and heap-allocated memory.
*/
pub use Assembler;
pub use ;
pub use RingBuffer;
/// A trait for setting a value to a known state.
///
/// In-place analog of Default.
/// Error returned when enqueuing into a full buffer.
;
/// Error returned when dequeuing from an empty buffer.
;