pub enum Error {
Show 17 variants
Core(Error),
Validation(String),
DidResolution(String),
InvalidDID,
UnsupportedDIDMethod(String),
FailedToAcquireResolverReadLock,
MissingConfig(String),
Crypto(String),
Message(String),
Policy(String),
Storage(String),
Io(Error),
Serialization(String),
NotImplemented(String),
DIDComm(Error),
DIDResolution(String),
SerdeError(Error),
}Expand description
Error types for TAP Agent
Variants§
Core(Error)
Core TAP errors
Validation(String)
Validation errors
DidResolution(String)
DID resolution errors
InvalidDID
Error related to invalid DID
UnsupportedDIDMethod(String)
Error for unsupported DID method
FailedToAcquireResolverReadLock
Error when failed to acquire resolver read lock
MissingConfig(String)
Error related to missing configuration
Crypto(String)
Error related to cryptographic operations
Message(String)
Error related to message processing
Policy(String)
Error related to policy evaluation
Storage(String)
Error related to storage
Io(Error)
IO errors
Serialization(String)
Serialization errors
NotImplemented(String)
Feature not implemented
DIDComm(Error)
DIDComm specific errors
DIDResolution(String)
DID Resolution error
SerdeError(Error)
Serde JSON error
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()
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