Enum keri_core::processor::validator::VerificationError
source · pub enum VerificationError {
VerificationFailure,
SignatureError(SignatureError),
NotEstablishment(EventSeal),
MissingSignerId,
MoreInfo(MoreInfoError),
}Variants§
VerificationFailure
SignatureError(SignatureError)
NotEstablishment(EventSeal)
MissingSignerId
MoreInfo(MoreInfoError)
Trait Implementations§
source§impl Debug for VerificationError
impl Debug for VerificationError
source§impl<'de> Deserialize<'de> for VerificationError
impl<'de> Deserialize<'de> for VerificationError
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for VerificationError
impl Display for VerificationError
source§impl Error for VerificationError
impl Error for VerificationError
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<MoreInfoError> for VerificationError
impl From<MoreInfoError> for VerificationError
source§fn from(source: MoreInfoError) -> Self
fn from(source: MoreInfoError) -> Self
Converts to this type from the input type.
source§impl From<SignatureError> for VerificationError
impl From<SignatureError> for VerificationError
source§fn from(source: SignatureError) -> Self
fn from(source: SignatureError) -> Self
Converts to this type from the input type.
source§impl From<VerificationError> for Error
impl From<VerificationError> for Error
source§fn from(source: VerificationError) -> Self
fn from(source: VerificationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VerificationError
impl RefUnwindSafe for VerificationError
impl Send for VerificationError
impl Sync for VerificationError
impl Unpin for VerificationError
impl UnwindSafe for VerificationError
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