Crate pw_stream

source ·
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§

  • A description of a seek operation in a stream.

Traits§

  • A trait for objects that provide streaming read capability.
  • A trait for reading integers from a stream.
  • A trait for reading varint integers from a stream.
  • A trait for objects that provide the ability to seek withing a stream.
  • A trait for objects that provide streaming write capability.
  • A trait for writing integers toa stream.
  • A trait for writing varint integers from a stream.