pub struct ForcedBit {
pub area: MemoryArea,
pub address: u16,
pub bit: u8,
pub spec: ForceSpec,
}Expand description
A bit to be forced.
Fields§
§area: MemoryAreaMemory area of the bit.
address: u16Word address of the bit.
bit: u8Bit position (0-15).
spec: ForceSpecForce specification.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ForcedBit
impl RefUnwindSafe for ForcedBit
impl Send for ForcedBit
impl Sync for ForcedBit
impl Unpin for ForcedBit
impl UnsafeUnpin for ForcedBit
impl UnwindSafe for ForcedBit
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