Module kernel::utilities::binary_write
source · Expand description
Basic binary write interface and supporting structs.
This simple trait provides a synchronous interface for printing an arbitrary
binary slice. This mirrors the core::fmt::Write
interface but doesn’t
expect a &str
.
Structs§
- Wrapper to convert a binary buffer writer to provide a
core::fmt::Write
interface with offset tracking. This allows a synchronous writer to use an underlying asynchronous write implementation.
Traits§
- Interface for writing an arbitrary buffer.