pub enum PollError {
UnknownRequest,
WrongQueue,
DriverPoisoned,
}Expand description
Queue misuse/query failure.
This is intentionally separate from request I/O completion. Returning this error must not tell the runtime that the DMA backing is safe to recycle.
Variants§
Trait Implementations§
impl Copy for PollError
impl Eq for PollError
impl StructuralPartialEq for PollError
Auto Trait Implementations§
impl Freeze for PollError
impl RefUnwindSafe for PollError
impl Send for PollError
impl Sync for PollError
impl Unpin for PollError
impl UnsafeUnpin for PollError
impl UnwindSafe for PollError
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