pub enum LocatorError {
ManufacturerError(ManufacturerError),
PubkeyError(ParsePubkeyError),
UriReferenceError(URIReferenceError),
UnimplementedScheme,
Infallible,
}
Variants§
ManufacturerError(ManufacturerError)
PubkeyError(ParsePubkeyError)
UriReferenceError(URIReferenceError)
UnimplementedScheme
Infallible
Trait Implementations§
source§impl Clone for LocatorError
impl Clone for LocatorError
source§fn clone(&self) -> LocatorError
fn clone(&self) -> LocatorError
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 LocatorError
impl Debug for LocatorError
source§impl Display for LocatorError
impl Display for LocatorError
source§impl Error for LocatorError
impl Error for LocatorError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 LocatorError
impl From<Infallible> for LocatorError
source§fn from(_: Infallible) -> Self
fn from(_: Infallible) -> Self
Converts to this type from the input type.
source§impl From<LocatorError> for RemoteWalletError
impl From<LocatorError> for RemoteWalletError
source§fn from(source: LocatorError) -> Self
fn from(source: LocatorError) -> Self
Converts to this type from the input type.
source§impl From<ManufacturerError> for LocatorError
impl From<ManufacturerError> for LocatorError
source§fn from(source: ManufacturerError) -> Self
fn from(source: ManufacturerError) -> Self
Converts to this type from the input type.
source§impl From<ParsePubkeyError> for LocatorError
impl From<ParsePubkeyError> for LocatorError
source§impl From<URIReferenceError> for LocatorError
impl From<URIReferenceError> for LocatorError
source§fn from(source: URIReferenceError) -> Self
fn from(source: URIReferenceError) -> Self
Converts to this type from the input type.
source§impl PartialEq<LocatorError> for LocatorError
impl PartialEq<LocatorError> for LocatorError
source§fn eq(&self, other: &LocatorError) -> bool
fn eq(&self, other: &LocatorError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.