devela::all

Type Alias DataValue64Copy

Source
pub type DataValue64Copy = DataValue64With<NoData>;
Available on crate feature _value64 only.
Expand description

64-bit data value, restricted to Copy variants.

See also:

Aliased Type§

enum DataValue64Copy {
Show 20 variants NoData, Extra(()), U8(u8), I8(i8), ByteArray1B([u8; 1]), Bool(bool), U16(u16), I16(i16), ByteArray2B([u8; 2]), U32(u32), I32(i32), F32(f32), ByteArray4B([u8; 4]), Char(char), U64(u64), I64(i64), F64(f64), ByteArray8B([u8; 8]), Usize(usize), Isize(isize),
}

Variants§

§

NoData

No data.

§

Extra(())

Extra data values.

§

U8(u8)

8-bit unsigned integer

§

I8(i8)

8-bit signed integer

§

ByteArray1B([u8; 1])

1-Byte array of bytes

§

Bool(bool)

Boolean value

§

U16(u16)

16-bit unsigned integer

§

I16(i16)

16-bit signed integer

§

ByteArray2B([u8; 2])

2-Byte array of bytes

§

U32(u32)

32-bit unsigned integer

§

I32(i32)

32-bit signed integer

§

F32(f32)

32-bit floating-point number

§

ByteArray4B([u8; 4])

4-Byte array of bytes

§

Char(char)

4-Byte char

§

U64(u64)

64-bit unsigned integer

§

I64(i64)

64-bit signed integer

§

F64(f64)

64-bit floating-point number

§

ByteArray8B([u8; 8])

8-Byte array of bytes

§

Usize(usize)

64-bit usize

§

Isize(isize)

64-bit isize