pub enum DerivedAddrParseError {
NoSeparator,
Address(AddressParseError),
Terminal(TerminalParseError),
}
Variants§
Trait Implementations§
Source§impl Clone for DerivedAddrParseError
impl Clone for DerivedAddrParseError
Source§fn clone(&self) -> DerivedAddrParseError
fn clone(&self) -> DerivedAddrParseError
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 DerivedAddrParseError
impl Debug for DerivedAddrParseError
Source§impl Display for DerivedAddrParseError
impl Display for DerivedAddrParseError
Source§impl Error for DerivedAddrParseError
impl Error for DerivedAddrParseError
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<AddressParseError> for DerivedAddrParseError
impl From<AddressParseError> for DerivedAddrParseError
Source§fn from(v: AddressParseError) -> DerivedAddrParseError
fn from(v: AddressParseError) -> DerivedAddrParseError
Converts to this type from the input type.
Source§impl From<TerminalParseError> for DerivedAddrParseError
impl From<TerminalParseError> for DerivedAddrParseError
Source§fn from(v: TerminalParseError) -> DerivedAddrParseError
fn from(v: TerminalParseError) -> DerivedAddrParseError
Converts to this type from the input type.
Source§impl PartialEq for DerivedAddrParseError
impl PartialEq for DerivedAddrParseError
impl Eq for DerivedAddrParseError
impl StructuralPartialEq for DerivedAddrParseError
Auto Trait Implementations§
impl Freeze for DerivedAddrParseError
impl RefUnwindSafe for DerivedAddrParseError
impl Send for DerivedAddrParseError
impl Sync for DerivedAddrParseError
impl Unpin for DerivedAddrParseError
impl UnwindSafe for DerivedAddrParseError
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.