pub enum DType {
}Expand description
Simplified datatype enum for the high-level API.
Maps from the detailed rustyhdf5_format::datatype::Datatype to a
user-friendly representation.
Variants§
F32
F64
I8
I16
I32
I64
U8
U16
U32
U64
String
Compound(Vec<(String, DType)>)
Enum(Vec<String>)
Array(Box<DType>, Vec<u32>)
VariableLengthString
Other(String)
Trait Implementations§
impl StructuralPartialEq for DType
Auto Trait Implementations§
impl Freeze for DType
impl RefUnwindSafe for DType
impl Send for DType
impl Sync for DType
impl Unpin for DType
impl UnsafeUnpin for DType
impl UnwindSafe for DType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more