pub enum PortError {
Invalid(PortID),
Closed,
Disconnected,
RecvFailed,
SendFailed,
DecodeFailed(DecodeError),
Other(String),
}
Variants§
Trait Implementations§
Source§impl Error for PortError
impl Error for PortError
1.30.0 · 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<DecodeError> for PortError
impl From<DecodeError> for PortError
Source§fn from(error: DecodeError) -> Self
fn from(error: DecodeError) -> Self
Converts to this type from the input type.
Source§impl From<PortError> for BlockError
impl From<PortError> for BlockError
impl Eq for PortError
impl StructuralPartialEq for PortError
Auto Trait Implementations§
impl Freeze for PortError
impl RefUnwindSafe for PortError
impl Send for PortError
impl Sync for PortError
impl Unpin for PortError
impl UnwindSafe for PortError
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