mod.rs 475 B

12345678910111213141516171819
  1. /*! Specialized containers.
  2. The `storage` module provides containers for use in other modules.
  3. The containers support both pre-allocated memory, without the `std`
  4. or `alloc` crates being available, and heap-allocated memory.
  5. */
  6. mod assembler;
  7. mod ring_buffer;
  8. pub use self::assembler::Assembler;
  9. pub use self::ring_buffer::RingBuffer;
  10. /// A trait for setting a value to a known state.
  11. ///
  12. /// In-place analog of Default.
  13. pub trait Resettable {
  14. fn reset(&mut self);
  15. }