Trait drone_core::reg::RegField [] [src]

pub trait RegField<T: RegTag>: Sized {
    type Reg: Reg<T>;

    const OFFSET: usize;
    const WIDTH: usize;
}

Register field token.

Associated Types

Parent register type.

Associated Constants

Address offset of the field.

Bit-width of the field.

Implementors