use hdf5_sys::h5p::{H5P_CRT_ORDER_INDEXED, H5P_CRT_ORDER_TRACKED};
use bitflags::bitflags;
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub struct AttrPhaseChange {
pub max_compact: u32,
pub min_dense: u32,
}
impl Default for AttrPhaseChange {
fn default() -> Self {
Self { max_compact: 8, min_dense: 6 }
}
}
bitflags! {
#[derive(Clone, Copy, Debug, PartialEq, Eq, Default)]
pub struct AttrCreationOrder: u32 {
const TRACKED = H5P_CRT_ORDER_TRACKED as _;
const INDEXED = H5P_CRT_ORDER_INDEXED as _;
}
}