pub enum ClaimVerificationError {
ProofFetch(ProofFetchError),
ServiceMismatch,
ProofProcessing,
ClaimProcessing,
Unknown,
}Variants§
Trait Implementations§
Source§impl Debug for ClaimVerificationError
impl Debug for ClaimVerificationError
Source§impl Display for ClaimVerificationError
impl Display for ClaimVerificationError
Source§impl Error for ClaimVerificationError
impl Error for ClaimVerificationError
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<ProofFetchError> for ClaimVerificationError
impl From<ProofFetchError> for ClaimVerificationError
Source§fn from(source: ProofFetchError) -> Self
fn from(source: ProofFetchError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for ClaimVerificationError
impl !UnwindSafe for ClaimVerificationError
impl Freeze for ClaimVerificationError
impl Send for ClaimVerificationError
impl Sync for ClaimVerificationError
impl Unpin for ClaimVerificationError
impl UnsafeUnpin for ClaimVerificationError
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