Enum interrupts::EoiBehaviour
source · #[repr(C)]pub enum EoiBehaviour {
HandlerDidNotSendEoi = 0,
HandlerSentEoi = 1,
}
Variants§
HandlerDidNotSendEoi = 0
The interrupt handler hasn’t called the eoi
function,
in which case it will be called automatically once the
handler returns.
HandlerSentEoi = 1
The interrupt handler has called the eoi
function.
Trait Implementations§
source§impl Debug for EoiBehaviour
impl Debug for EoiBehaviour
source§impl PartialEq<EoiBehaviour> for EoiBehaviour
impl PartialEq<EoiBehaviour> for EoiBehaviour
source§fn eq(&self, other: &EoiBehaviour) -> bool
fn eq(&self, other: &EoiBehaviour) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for EoiBehaviour
impl StructuralEq for EoiBehaviour
impl StructuralPartialEq for EoiBehaviour
Auto Trait Implementations§
impl RefUnwindSafe for EoiBehaviour
impl Send for EoiBehaviour
impl Sync for EoiBehaviour
impl Unpin for EoiBehaviour
impl UnwindSafe for EoiBehaviour
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