Simplified type code handling and refactored library to a single file. #12
Annotations
1 error and 5 warnings
test
Process completed with exit code 101.
|
/home/runner/work/bluefile/bluefile/src/lib.rs#L125
field `offset` is never read
|
/home/runner/work/bluefile/bluefile/src/lib.rs#L132
associated function `new` is never used
|
field `offset` is never read:
src/lib.rs#L125
warning: field `offset` is never read
--> src/lib.rs:125:5
|
122 | pub struct ExtHeaderIter {
| ------------- field in this struct
...
125 | offset: usize,
| ^^^^^^
|
= note: `#[warn(dead_code)]` on by default
|
associated function `new` is never used:
src/lib.rs#L132
warning: associated function `new` is never used
--> src/lib.rs:132:8
|
131 | impl ExtHeaderIter {
| ------------------ associated function in this implementation
132 | fn new(file: File, offset: usize, size: usize, endianness: Endianness) -> Result<Self> {
| ^^^
|
2 warnings emitted
warning: 2 warnings emitted
|