pub struct BitPatternField<'a> {
pub name: &'a str,
pub bits: u32,
pub descriptor: &'a str,
pub value: Value,
}Expand description
A fixed bit pattern or marker bit field.
Fields§
§name: &'a strPattern name, e.g. "'0010'" or "marker_bit"
bits: u32Number of bits
descriptor: &'a strDescriptor, e.g. "bslbf"
value: ValueThe actual value
Auto Trait Implementations§
impl<'a> Freeze for BitPatternField<'a>
impl<'a> RefUnwindSafe for BitPatternField<'a>
impl<'a> Send for BitPatternField<'a>
impl<'a> Sync for BitPatternField<'a>
impl<'a> Unpin for BitPatternField<'a>
impl<'a> UnsafeUnpin for BitPatternField<'a>
impl<'a> UnwindSafe for BitPatternField<'a>
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