File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 9
9
- Support field renaming via ` #[hdf5(rename = "new_name")] ` helper attribute.
10
10
- Add a ` ByteReader ` which implements ` std::io::{Read, Seek} ` for 1D ` u8 `
11
11
datasets. Usage via ` Dataset::as_byte_reader() ` .
12
+ - Add ` chunk_visit ` to visit all chunks in a dataset.
12
13
13
14
### Changed
14
15
15
16
- The ` H5Type ` derive macro now uses ` proc-macro-error ` to emit error messages.
16
17
- MSRV is now ` 1.64.0 ` and Rust edition has now been bumped to 2021.
18
+ - Types in ChunkInfo has been changed to match HDF5
17
19
18
20
### Fixed
19
21
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ impl Dataset {
118
118
}
119
119
120
120
/// Visit all chunks
121
- #[ cfg( feature = "1.13 .0" ) ]
121
+ #[ cfg( feature = "1.14 .0" ) ]
122
122
pub fn chunks_visit < F > ( & self , callback : F ) -> Result < ( ) >
123
123
where
124
124
F : for < ' a > FnMut ( crate :: dataset:: ChunkInfoRef < ' a > ) -> i32 ,
You can’t perform that action at this time.
0 commit comments