#[repr(C)]pub struct avr_irq_t {
pub pool: *mut avr_irq_pool_t,
pub name: *const c_char,
pub irq: u32,
pub value: u32,
pub flags: u8,
pub hook: *mut avr_irq_hook_t,
}
Expand description
Public IRQ structure
Fields§
§pool: *mut avr_irq_pool_t
§name: *const c_char
§irq: u32
!< any value the user needs
value: u32
!< current value
flags: u8
!< IRQ_* flags
hook: *mut avr_irq_hook_t
!< list of hooks to be notified
Trait Implementations§
Auto Trait Implementations§
impl Freeze for avr_irq_t
impl RefUnwindSafe for avr_irq_t
impl !Send for avr_irq_t
impl !Sync for avr_irq_t
impl Unpin for avr_irq_t
impl UnwindSafe for avr_irq_t
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