Trait ht32f1yyy::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, …).

Implementations on Foreign Types§

source§

impl FieldSpec for u64

§

type Ux = u64

source§

impl FieldSpec for u32

§

type Ux = u32

source§

impl FieldSpec for u16

§

type Ux = u16

source§

impl FieldSpec for u8

§

type Ux = u8

Implementors§