pub trait FieldWriter<BufferType>: Field<BufferType>where
    BufferType: ?Sized,
{ fn write(buffer: &mut BufferType, value: Self::ValueType); fn revert(buffer: &mut BufferType); }
Expand description

bit 字段写入器

bit 字段的实际写入函数,类型参数 BufferType 一般为 bit 字段归属的结构体类型。

Required Methods

Implementors