Enum ssi_dids_core::resolution::Error
source · pub enum Error {
MethodNotSupported(String),
NotFound,
NoRepresentation,
RepresentationNotSupported(String),
InvalidData(InvalidData),
InvalidMethodSpecificId(String),
InvalidOptions,
Internal(String),
}
Expand description
DID resolution error.
Error raised by the DIDResolver::resolve
method.
Variants§
MethodNotSupported(String)
DID method is not supported by this resolver.
NotFound
DID document could not be found.
NoRepresentation
Resolver doesn’t know what representation to use for the DID document.
RepresentationNotSupported(String)
Requested DID document representation is not supported.
InvalidData(InvalidData)
Invalid data provided to the resolver.
InvalidMethodSpecificId(String)
Invalid method-specific identifier.
InvalidOptions
Invalid resolution options.
Internal(String)
Internal resolver-specific error.
Implementations§
Trait Implementations§
source§impl Error for Error
impl Error for Error
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<Error> for DerefError
impl From<Error> for DerefError
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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> BorrowUnordered for T
impl<T> BorrowUnordered for T
fn as_unordered(&self) -> &Unordered<T>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, U, C> IntoWithContext<U, C> for Twhere
U: FromWithContext<T, C>,
impl<T, U, C> IntoWithContext<U, C> for Twhere
U: FromWithContext<T, C>,
source§impl<T> ResourceProvider<()> for T
impl<T> ResourceProvider<()> for T
source§fn get_resource(&self) -> &()
fn get_resource(&self) -> &()
Returns a reference to the resource of type
T
.