#[non_exhaustive]pub enum Decision {
Completed(usize),
Wait(WaitArg),
Blocking,
Aio(AioControl),
}
Expand description
Result of OpCode::pre_submit
.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Completed(usize)
Instant operation, no need to submit
Wait(WaitArg)
Async operation, needs to submit
Blocking
Blocking operation, needs to be spawned in another thread
Aio(AioControl)
Available on
aio
only.AIO operation, needs to be spawned to the kernel.
Implementations§
Source§impl Decision
impl Decision
Sourcepub fn wait_for(fd: RawFd, interest: Interest) -> Self
pub fn wait_for(fd: RawFd, interest: Interest) -> Self
Decide to wait for the given fd with the given interest.
Sourcepub fn wait_readable(fd: RawFd) -> Self
pub fn wait_readable(fd: RawFd) -> Self
Decide to wait for the given fd to be readable.
Sourcepub fn wait_writable(fd: RawFd) -> Self
pub fn wait_writable(fd: RawFd) -> Self
Decide to wait for the given fd to be writable.
Auto Trait Implementations§
impl Freeze for Decision
impl RefUnwindSafe for Decision
impl !Send for Decision
impl !Sync for Decision
impl Unpin for Decision
impl UnwindSafe for Decision
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