Expand description
pw_stream
provides no_std
versions of Rust’s std::io::Read
,
std::io::Write
, and std::io::Seek
traits as well as a simplified
version of std::io::Cursor
. One notable difference is that
pw_status::Error
is used to avoid needing to do error conversion or
encapsulation.
Structs§
Enums§
- Seek
From - A description of a seek operation in a stream.
Traits§
- Read
- A trait for objects that provide streaming read capability.
- Read
Integer - A trait for reading integers from a stream.
- Read
Varint - A trait for reading varint integers from a stream.
- Seek
- A trait for objects that provide the ability to seek withing a stream.
- Write
- A trait for objects that provide streaming write capability.
- Write
Integer - A trait for writing integers toa stream.
- Write
Varint - A trait for writing varint integers from a stream.