pub trait FieldReader<BufferType>: Field<BufferType>where
    BufferType: ?Sized,
{ fn read(buffer: &BufferType) -> Self::ValueType; }
Expand description

bit 字段读出器

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

Required Methods

Implementors