Module binrw::helpers[][src]

Expand description

Helper functions for reading data.

Functions

A helper similar to #[br(count = N)] which can be used with any collection.

Do the same as count with a custom parsing function for the inner type.

read_bytesDeprecated

A helper for more efficiently mass-reading bytes.

Read items until a condition is met. The final item will be included.

Read items until the end of the file is hit.

Do the same as until_eof with a custom parsing function for the inner type.

Read items until a condition is met. The last item will not be included.

Do the same as until_exclusive with a custom parsing function for the inner type.

Do the same as until with a custom parsing function for the inner type.