pub type DataType64Copy = DataType64CopyWith<NoData>;
Available on crate feature
_value64
only.Expand description
64-bit data type, restricted to Copy
variants.
See also:
- DataValue64Copy
- DataType64 -Copy
- DataType64CopyWith +With
- DataType64With -Copy +With
Aliased Type§
enum DataType64Copy {
Show 20 variants
NoData,
Extra(()),
U8,
I8,
ByteArray1B,
Bool,
U16,
I16,
ByteArray2B,
U32,
I32,
F32,
ByteArray4B,
Char,
U64,
I64,
F64,
ByteArray8B,
Usize,
Isize,
}
Variants§
NoData
No data.
Extra(())
A custom data type extension.
U8
8-bit unsigned integer
I8
8-bit signed integer
ByteArray1B
1-Byte array of bytes
Bool
Boolean value
U16
16-bit unsigned integer
I16
16-bit signed integer
ByteArray2B
2-Byte array of bytes
U32
32-bit unsigned integer
I32
32-bit signed integer
F32
32-bit floating-point number
ByteArray4B
4-Byte array of bytes
Char
4-Byte char
U64
64-bit unsigned integer
I64
64-bit signed integer
F64
64-bit floating-point number
ByteArray8B
8-Byte array of bytes
Usize
64-bit usize
Isize
64-bit isize