Enum nix::sys::aio::AioCancelStat
#[repr(i32)]
pub enum AioCancelStat {
AioCanceled,
AioNotCanceled,
AioAllDone,
}Documentation
Return values for AioCb::cancel and
aio_cancel_all
Variants
AioCanceledAll outstanding requests were canceled
AioNotCanceledSome requests were not canceled. Their status should be checked with
AioCb::error
AioAllDoneAll of the requests have already finished
Trait Implementations
impl Clone for AioCancelStat
fn clone(&Self) -> AioCancelStatimpl Copy for AioCancelStatimpl Debug for AioCancelStat
fn fmt(&Self, f: &mut $crate::fmt::Formatter<'_>) -> $crate::fmt::Resultimpl Eq for AioCancelStatimpl Hash for AioCancelStat
fn hash<__H: $crate::hash::Hasher>(&Self, state: &mut __H) -> ()impl PartialEq<AioCancelStat> for AioCancelStat
fn eq(&Self, other: &AioCancelStat) -> boolimpl StructuralEq for AioCancelStatimpl StructuralPartialEq for AioCancelStatAuto Trait Implementations
impl RefUnwindSafe for AioCancelStatimpl Send for AioCancelStatimpl Sync for AioCancelStatimpl Unpin for AioCancelStatimpl UnwindSafe for AioCancelStatBlanket Implementations
impl<T> BorrowMut<T> for T
where
T: ?Sized,
where
T: ?Sized,
fn borrow_mut(&mut Self) -> &mut T