pub trait Field<BufferType>where
    BufferType: ?Sized,
{ type ValueType; }
Expand description

标识一个 bit 字段

类型参数 BufferType 一般为 bit 字段所归属的结构体类型,这样可以保持一致性。 也可以是其他结构体类型,这样多个结构体类型将拥有同一个字段,但彼此的位置和值类型可以互不相同。

Required Associated Types

Implementors