Enum nix::sys::aio::AioCancelStat [−][src]
#[repr(i32)]
pub enum AioCancelStat {
AioCanceled,
AioNotCanceled,
AioAllDone,
}
Expand description
Return values for AioCb::cancel
and
aio_cancel_all
Variants
AioCanceled
All outstanding requests were canceled
AioNotCanceled
Some requests were not canceled. Their status should be checked with
AioCb::error
AioAllDone
All of the requests have already finished
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for AioCancelStat
impl Send for AioCancelStat
impl Sync for AioCancelStat
impl Unpin for AioCancelStat
impl UnwindSafe for AioCancelStat
Blanket Implementations
Mutably borrows from an owned value. Read more