#[non_exhaustive]pub enum OpType {
Fd(RawFd),
Aio(NonNull<aiocb>),
}
Expand description
Represents the filter type of kqueue. polling
crate doesn’t expose such
API, and we need to know about it when cancel
is called.
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.
Fd(RawFd)
The operation polls an fd.
Aio(NonNull<aiocb>)
Available on
aio
only.The operation submits an AIO.
Auto Trait Implementations§
impl Freeze for OpType
impl RefUnwindSafe for OpType
impl !Send for OpType
impl !Sync for OpType
impl Unpin for OpType
impl UnwindSafe for OpType
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