[][src]Struct e310x_hal::core::plic::INTERRUPT

pub struct INTERRUPT<IRQ> { /* fields omitted */ }

Fine grained interrupt handling.

Methods

impl<IRQ> INTERRUPT<IRQ>[src]

pub fn enable(&mut self)[src]

Enable IRQ interrupt.

pub fn disable(&mut self)[src]

Disable IRQ interrupt.

pub fn is_pending(&self) -> bool[src]

Returns true when IRQ interrupt is pending.

pub fn is_enabled(&self) -> bool[src]

Returns true when WDOG interrupt is enabled.

pub fn priority(&self) -> Priority[src]

Returns the priority of the IRQ interrupt.

pub fn set_priority(&mut self, priority: Priority)[src]

Sets the priority of the IRQ interrupt.

Auto Trait Implementations

impl<IRQ> Send for INTERRUPT<IRQ> where
    IRQ: Send

impl<IRQ> Sync for INTERRUPT<IRQ> where
    IRQ: Sync

impl<IRQ> Unpin for INTERRUPT<IRQ> where
    IRQ: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.