Expand description
utility stuff
Structs§
- Array
Buf - Byte buffer backed by an array.
- EhReader
embedded_hal - Wraps types that implement
embedded_hal::serial::Read<...>and implementsByteSource - Eof
- Error type indicating that the end of the input has been reached
- IoReader
std - Wraps types that implement
std::io::Readand implementsByteSource - Iter
Reader - Wraps byte iterators and implements
ByteSource - OutOf
Memory - Error type indicating that an operation failed due to lack of memory.
- Slice
Reader - Wraps byte slices and implements
ByteSource
Traits§
- Buffer
- Interface for byte vectors.
- Byte
Source - Helper trait that allows reading individual bytes
- Byte
Source Err - Helper trait implemented for Error types of
ByteSource
Type Aliases§
- VecBuf
alloc - Type alias for
alloc::Vec<u8>