#[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
sourceimpl Clone for AioCancelStat
impl Clone for AioCancelStat
sourcefn clone(&self) -> AioCancelStat
fn clone(&self) -> AioCancelStat
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AioCancelStat
impl Debug for AioCancelStat
sourceimpl Hash for AioCancelStat
impl Hash for AioCancelStat
sourceimpl PartialEq<AioCancelStat> for AioCancelStat
impl PartialEq<AioCancelStat> for AioCancelStat
impl Copy for AioCancelStat
impl Eq for AioCancelStat
impl StructuralEq for AioCancelStat
impl StructuralPartialEq for AioCancelStat
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more