#[non_exhaustive]pub enum AddrParseError {
UnrecognizedSchema(String),
NoSchema,
InvalidAfUnixAddress(Arc<Error>),
InvalidInetAddress(AddrParseError),
}
Expand description
An error encountered while attempting to parse a SocketAddr
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.
UnrecognizedSchema(String)
Tried to parse an address with an unrecognized schema.
NoSchema
Tried to parse a non inet-address with no schema.
InvalidAfUnixAddress(Arc<Error>)
Tried to parse an address as an AF_UNIX address, but failed.
InvalidInetAddress(AddrParseError)
Tried to parse an address as a inet address, but failed.
Trait Implementations§
Source§impl Clone for AddrParseError
impl Clone for AddrParseError
Source§fn clone(&self) -> AddrParseError
fn clone(&self) -> AddrParseError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AddrParseError
impl Debug for AddrParseError
Source§impl Display for AddrParseError
impl Display for AddrParseError
Source§impl Error for AddrParseError
impl Error for AddrParseError
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<AddrParseError> for AddrParseError
impl From<AddrParseError> for AddrParseError
Source§fn from(source: AddrParseError) -> AddrParseError
fn from(source: AddrParseError) -> AddrParseError
Converts to this type from the input type.
Source§impl From<Error> for AddrParseError
impl From<Error> for AddrParseError
Source§fn from(e: Error) -> AddrParseError
fn from(e: Error) -> AddrParseError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AddrParseError
impl !RefUnwindSafe for AddrParseError
impl Send for AddrParseError
impl Sync for AddrParseError
impl Unpin for AddrParseError
impl !UnwindSafe for AddrParseError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<E> ErrorReport for Ewhere
E: Error + 'static,
impl<E> ErrorReport for Ewhere
E: Error + 'static,
Source§fn report(&self) -> Report<ReportHelper<'_>>
fn report(&self) -> Report<ReportHelper<'_>>
Return an object that displays the error and its causes