pub enum AcceptorError {
OpensslError(ErrorStack),
IoError(Error),
ExeNoParent,
}Variants§
Trait Implementations§
Source§impl Debug for AcceptorError
impl Debug for AcceptorError
Source§impl Display for AcceptorError
impl Display for AcceptorError
Source§impl Fail for AcceptorError
impl Fail for AcceptorError
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace carried by this failure, if it
carries one. Read moreSource§impl From<Error> for AcceptorError
impl From<Error> for AcceptorError
Source§impl From<ErrorStack> for AcceptorError
impl From<ErrorStack> for AcceptorError
Source§fn from(err: ErrorStack) -> Self
fn from(err: ErrorStack) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AcceptorError
impl !RefUnwindSafe for AcceptorError
impl Send for AcceptorError
impl Sync for AcceptorError
impl Unpin for AcceptorError
impl !UnwindSafe for AcceptorError
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