File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 99- Support field renaming via ` #[hdf5(rename = "new_name")] ` helper attribute.
1010- Add a ` ByteReader ` which implements ` std::io::{Read, Seek} ` for 1D ` u8 `
1111 datasets. Usage via ` Dataset::as_byte_reader() ` .
12+ - Add ` chunk_visit ` to visit all chunks in a dataset.
1213
1314### Changed
1415
1516- The ` H5Type ` derive macro now uses ` proc-macro-error ` to emit error messages.
1617- 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
1719
1820### Fixed
1921
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ impl Dataset {
118118 }
119119
120120 /// Visit all chunks
121- #[ cfg( feature = "1.13 .0" ) ]
121+ #[ cfg( feature = "1.14 .0" ) ]
122122 pub fn chunks_visit < F > ( & self , callback : F ) -> Result < ( ) >
123123 where
124124 F : for < ' a > FnMut ( crate :: dataset:: ChunkInfoRef < ' a > ) -> i32 ,
You can’t perform that action at this time.
0 commit comments