#[non_exhaustive]pub enum DIDSCIDError {
WebsError(String),
UnknownFormat(String),
UnsupportedVersion(String),
UnsupportedFormat,
DidUrlError(String),
InvalidSrc(String),
WebVHError(DIDWebVHError),
CheqdError(String),
MissingPeerSource,
SerdeError(Error),
}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.
WebsError(String)
A did:webs resolution failed.
UnknownFormat(String)
The DID names a did:scid format this implementation does not
resolve. Distinct from Self::UnsupportedFormat, which means the
string is not a did:scid at all.
UnsupportedVersion(String)
The DID names a format version this implementation does not resolve.
UnsupportedFormat
DidUrlError(String)
InvalidSrc(String)
WebVHError(DIDWebVHError)
CheqdError(String)
MissingPeerSource
SerdeError(Error)
Trait Implementations§
Source§impl Debug for DIDSCIDError
impl Debug for DIDSCIDError
Source§impl Display for DIDSCIDError
impl Display for DIDSCIDError
Source§impl Error for DIDSCIDError
impl Error for DIDSCIDError
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<DIDWebVHError> for DIDSCIDError
impl From<DIDWebVHError> for DIDSCIDError
Source§fn from(source: DIDWebVHError) -> Self
fn from(source: DIDWebVHError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for DIDSCIDError
impl !UnwindSafe for DIDSCIDError
impl Freeze for DIDSCIDError
impl Send for DIDSCIDError
impl Sync for DIDSCIDError
impl Unpin for DIDSCIDError
impl UnsafeUnpin for DIDSCIDError
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