Trait ch641::FieldSpec

source ·
pub trait FieldSpec: Sized {
    type Ux: Copy + PartialEq + From<Self>;
}
Expand description

Raw field type

Required Associated Types§

source

type Ux: Copy + PartialEq + From<Self>

Raw field type (u8, u16, u32, …).

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl FieldSpec for u8

§

type Ux = u8

source§

impl FieldSpec for u16

§

type Ux = u16

source§

impl FieldSpec for u32

§

type Ux = u32

source§

impl FieldSpec for u64

§

type Ux = u64

Implementors§