pub enum Poll {
Done(u32),
Pending,
}Expand description
Result of an engine operation that may complete inline.
Variants§
Done(u32)
Completed immediately with the given byte/fd count.
Pending
Queued; completion will arrive as a CQE with the same token.
Trait Implementations§
impl Copy for Poll
impl Eq for Poll
impl StructuralPartialEq for Poll
Auto Trait Implementations§
impl Freeze for Poll
impl RefUnwindSafe for Poll
impl Send for Poll
impl Sync for Poll
impl Unpin for Poll
impl UnsafeUnpin for Poll
impl UnwindSafe for Poll
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