Module binrw::prelude[][src]

Expand description

The binrw prelude.

A collection of traits and types you’ll likely need when working with binrw and are unlikely to cause name conflicts.

use binrw::prelude::*;

Re-exports

pub use crate::BinResult;

Traits

The BinRead trait reads data from streams and converts it into objects.

Extension methods for reading BinRead objects directly from a reader.

A trait for writing a given type to a writer

Extension methods for writing BinWrite objects directly to a writer.

Derive Macros