pub type Dims = Dims64;
#[repr(C)]pub struct Dims { pub nbDims: i32, pub d: [i64; 8], }
nbDims: i32
! The rank (number of dimensions).
d: [i64; 8]
! The extent of each dimension.