Skip to content

Commit b762e22

Browse files
authored
Merge pull request #147 from mulimoen/feature/try_into_selection
Use TryFrom over From
2 parents 46c24e2 + 252136f commit b762e22

File tree

24 files changed

+569
-378
lines changed

24 files changed

+569
-378
lines changed

hdf5-sys/src/h5.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! General purpose library functions
12
use std::mem;
23

34
pub use self::H5_index_t::*;

hdf5-sys/src/h5a.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! Creating and manipulating HDF5 attributes
12
use std::mem;
23

34
use crate::internal_prelude::*;

hdf5-sys/src/h5ac.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! Cache functions
12
use std::mem;
23

34
use crate::internal_prelude::*;

hdf5-sys/src/h5c.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! Cache functionality
12
pub use self::H5C_cache_decr_mode::*;
23
pub use self::H5C_cache_flash_incr_mode::*;
34
pub use self::H5C_cache_incr_mode::*;

hdf5-sys/src/h5d.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! Creating and manipulating scientific datasets
12
pub use self::H5D_alloc_time_t::*;
23
pub use self::H5D_fill_time_t::*;
34
pub use self::H5D_fill_value_t::*;

hdf5-sys/src/h5e.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! Functions for handling errors that occur within HDF5
12
use std::mem;
23

34
pub use self::H5E_direction_t::*;

hdf5-sys/src/h5f.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! Creating and manipulating HDF5 files
12
use std::mem;
23

34
pub use self::H5F_close_degree_t::*;

hdf5-sys/src/h5fd.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! File drivers
12
use std::mem;
23

34
pub use self::H5FD_file_image_op_t::*;

hdf5-sys/src/h5g.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! Creating and manipulating groups of objects inside an HDF5 file
12
use std::mem;
23

34
pub use self::H5G_storage_type_t::*;

hdf5-sys/src/h5i.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//! Manipulating object identifiers and object names
12
pub use self::H5I_type_t::*;
23

34
use crate::internal_prelude::*;

0 commit comments

Comments
 (0)