[][src]Module binread::io

A swappable version of std::io that works in no_std + alloc environments. If the feature flag std is enabled (as it is by default), this will just re-export types from std::io.

Modules

cursor
error
prelude

Structs

Bytes
Cursor

A Cursor wraps an in-memory buffer and provides it with a Seek implementation.

Error

The error type for I/O operations of the Read, Write, Seek, and associated traits.

Enums

ErrorKind

A list specifying general categories of I/O error.

SeekFrom

Enumeration of possible methods to seek within an I/O object.

Traits

Read

A simplified version of std::io::Read for use in no_std environments

Seek

Type Definitions

Result

A specialized Result type for I/O operations.