Enum n5::DataType[][src]

pub enum DataType {
    UINT8,
    UINT16,
    UINT32,
    UINT64,
    INT8,
    INT16,
    INT32,
    INT64,
    FLOAT32,
    FLOAT64,
}

Data types representable in N5.

Variants

Methods

impl DataType
[src]

Boilerplate method for reflection of primitive type sizes.

Trait Implementations

impl PartialEq for DataType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Debug for DataType
[src]

Formats the value using the given formatter. Read more

impl Clone for DataType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for DataType
[src]

impl TypeReflection<u8> for DataType
[src]

impl DataBlockCreator<u8> for DataType
[src]

impl TypeReflection<u16> for DataType
[src]

impl DataBlockCreator<u16> for DataType
[src]

impl TypeReflection<u32> for DataType
[src]

impl DataBlockCreator<u32> for DataType
[src]

impl TypeReflection<u64> for DataType
[src]

impl DataBlockCreator<u64> for DataType
[src]

impl TypeReflection<i8> for DataType
[src]

impl DataBlockCreator<i8> for DataType
[src]

impl TypeReflection<i16> for DataType
[src]

impl DataBlockCreator<i16> for DataType
[src]

impl TypeReflection<i32> for DataType
[src]

impl DataBlockCreator<i32> for DataType
[src]

impl TypeReflection<i64> for DataType
[src]

impl DataBlockCreator<i64> for DataType
[src]

impl TypeReflection<f32> for DataType
[src]

impl DataBlockCreator<f32> for DataType
[src]

impl TypeReflection<f64> for DataType
[src]

impl DataBlockCreator<f64> for DataType
[src]

Auto Trait Implementations

impl Send for DataType

impl Sync for DataType