pub struct IrqState {
pub in_frame: bool,
pub prev_addr: Option<u16>,
pub match_count: u8,
pub pending: bool,
}Expand description
ExROM IRQ state.
Fields§
§in_frame: bool§prev_addr: Option<u16>§match_count: u8§pending: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for IrqState
impl<'de> Deserialize<'de> for IrqState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for IrqState
Auto Trait Implementations§
impl Freeze for IrqState
impl RefUnwindSafe for IrqState
impl Send for IrqState
impl Sync for IrqState
impl Unpin for IrqState
impl UnwindSafe for IrqState
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