enum IrqHandlerToken {
IrqFd {
index: IrqEventIndex,
},
VmIrq {
id: usize,
},
DelayedIrqFd,
HandlerControl,
}Variants§
Trait Implementations§
Source§impl EventToken for IrqHandlerToken
impl EventToken for IrqHandlerToken
Source§fn as_raw_token(&self) -> u64
fn as_raw_token(&self) -> u64
Converts this token into a u64 that can be turned back into a token via
from_raw_token.Source§fn from_raw_token(data: u64) -> Self
fn from_raw_token(data: u64) -> Self
Converts a raw token as returned from
as_raw_token back into a token. Read moreAuto Trait Implementations§
impl Freeze for IrqHandlerToken
impl RefUnwindSafe for IrqHandlerToken
impl Send for IrqHandlerToken
impl Sync for IrqHandlerToken
impl Unpin for IrqHandlerToken
impl UnwindSafe for IrqHandlerToken
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