We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 533ddd1 commit 911bb7bCopy full SHA for 911bb7b
hdf5-types/src/lib.rs
@@ -1,6 +1,13 @@
1
#![recursion_limit = "1024"]
2
#![cfg_attr(feature = "cargo-clippy", allow(clippy::missing_safety_doc))]
3
4
+//! Types that can be stored and retrieved from a `HDF5` dataset
5
+//!
6
+//! Crate features:
7
+//! * `const_generics`: Uses const generics to enable arrays [T; N] for all N.
8
+//! Compiling without this limits arrays to certain prespecified
9
+//! sizes
10
+
11
#[cfg(test)]
12
#[macro_use]
13
extern crate quickcheck;
0 commit comments