jam1garner

Results 39 issues of jam1garner

Both use `reinterpret_cast` internally and thus have no way to specify endianess, resulting in using the system endianess. I highly doubt any big endian systems are supported by imhex, but...

### Minimum Reproduction 1. Create a sufficiently large file ``` head -c 500M < /dev/zero > test.bin ``` 2. Open in imhex ``` imhex test.bin ``` 3. Create a somewhat...

bug

Splitting this off from #15

documentation

Ok so to clarify some things: * `binread` can still receive limited updates, however for the most part the 2.0.0 update is (in theory) the last major update to binread...

The idea would be that for format that don't involve any reverse seeking, `io::Seek` can be implemented in terms of just a position tracker an `io::Read`. This would better enable...

enhancement
good first issue

Spinning off from #129, making users more aware of this is a good practice. Most notable things to be included: 1. how buffering can help perf 2. how seeks can...

documentation

### Motivation Being able to utilize reader adapters easily would greatly improve multiple areas of binrw that could use a bit of improvement: * Parsing from decompressed or encrypted content...

See #118 for part of the motivation. It's possible to have it called immediately, but not disable it entirely.

Implementation notes: * Add a section at the bottom of the corresponding `attributes` page * Link to it from a sentence at the bottom of the attribute overview tables

documentation
has instructions

Normal enum: ```rust enum MagicTest { Zero, #[brw(magic = 1u8)] One, #[brw(magic = 2u8)] Two(()), } ``` Unit enum: ```rust enum MagicTest { Zero, #[brw(magic = 1u8)] One, #[brw(magic =...