pub struct FlatField {
pub name: String,
pub lsb: u8,
pub width: u8,
pub signed: bool,
}Expand description
Concrete normalized field.
Fields§
§name: StringField name (deduplicated if split).
lsb: u8Least significant bit index.
width: u8Width in bits.
signed: boolSignedness inference.
Trait Implementations§
impl Eq for FlatField
impl StructuralPartialEq for FlatField
Auto Trait Implementations§
impl Freeze for FlatField
impl RefUnwindSafe for FlatField
impl Send for FlatField
impl Sync for FlatField
impl Unpin for FlatField
impl UnsafeUnpin for FlatField
impl UnwindSafe for FlatField
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more