#[repr(i32)]pub enum LioOpcode {
LIO_NOP = 2,
LIO_WRITE = 1,
LIO_READ = 0,
}
Expand description
When used with lio_listio
, determines whether a
given aiocb
should be used for a read operation, a write operation, or
ignored. Has no effect for any other aio functions.
Variants§
Trait Implementations§
Source§impl Ord for LioOpcode
impl Ord for LioOpcode
Source§impl PartialOrd for LioOpcode
impl PartialOrd for LioOpcode
impl Copy for LioOpcode
impl Eq for LioOpcode
impl StructuralPartialEq for LioOpcode
Auto Trait Implementations§
impl Freeze for LioOpcode
impl RefUnwindSafe for LioOpcode
impl Send for LioOpcode
impl Sync for LioOpcode
impl Unpin for LioOpcode
impl UnwindSafe for LioOpcode
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