Expand description
§byteorder-cursor
A Rust crate build on top of the byteorder
crate that provides a
std::io::Cursor
like interface designed to simplify implementation of
arbitrary binary protocols in a no_std environment.
§Rust Feature Flags
std
(default) — Remove this feature to make the libraryno_std
compatible.
§License
byteorder-cursor is licensed under the BSD-3-Clause license.
§Example
See examples
directory.
Structs§
- Buffer
TooSmall - Error returned if the supplied buffer is too small.
- Cursor
- A std::io::Cursor like buffer interface with byteorder support and no_std compatibility.
Enums§
- BigEndian
- Defines big-endian serialization.
- Little
Endian - Defines little-endian serialization.