pub enum TcpingError {
Io(Error),
Join(JoinError),
Other(Error),
}Variants§
Trait Implementations§
Source§impl Debug for TcpingError
impl Debug for TcpingError
Source§impl Display for TcpingError
impl Display for TcpingError
Source§impl Error for TcpingError
impl Error for TcpingError
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()
Source§impl From<Error> for TcpingError
impl From<Error> for TcpingError
Source§impl From<Error> for TcpingError
impl From<Error> for TcpingError
Auto Trait Implementations§
impl Freeze for TcpingError
impl !RefUnwindSafe for TcpingError
impl Send for TcpingError
impl Sync for TcpingError
impl Unpin for TcpingError
impl !UnwindSafe for TcpingError
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