#[non_exhaustive]pub enum PortError {
InvalidCharacter,
Overflow,
}
Expand description
An error representing an invalid port.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InvalidCharacter
An invalid character was used in the port. Only decimal digits are allowed.
Overflow
The port was a valid number, but it was too large to fit in a u16
.
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<Infallible> for PortError
impl From<Infallible> for PortError
Source§fn from(_: Infallible) -> Self
fn from(_: Infallible) -> Self
Converts to this type from the input type.
Source§impl From<PortError> for AuthorityError
impl From<PortError> for AuthorityError
impl Copy for PortError
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