pub enum AioContextError {
EventFd(EventFdError),
IoSetup(Error),
}
Expand description
AIO context creation error
Variants§
Trait Implementations§
Source§impl Debug for AioContextError
impl Debug for AioContextError
Source§impl Display for AioContextError
impl Display for AioContextError
Source§impl Error for AioContextError
impl Error for AioContextError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for AioContextError
impl !RefUnwindSafe for AioContextError
impl Send for AioContextError
impl Sync for AioContextError
impl Unpin for AioContextError
impl !UnwindSafe for AioContextError
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