[][src]Trait idx_decoder::types::Type

pub trait Type: Sealed {
    type TypeValue;

    const VALUE: u8;
}

Trait implemented by output types used by IDXDecoder's iterator

It can't be implemented outside this crate.

Associated Types

Loading content...

Associated Constants

const VALUE: u8

Loading content...

Implementors

impl Type for F32[src]

type TypeValue = f32

impl Type for F64[src]

type TypeValue = f64

impl Type for I16[src]

type TypeValue = i16

impl Type for I32[src]

type TypeValue = i32

impl Type for I8[src]

type TypeValue = i8

impl Type for U8[src]

type TypeValue = u8

Loading content...