pub enum RevocationError {
Malformed(String),
InvalidToken(String),
EmailVerificationFailed(String),
AlreadyInProgress(String),
ThresholdDecryption(String),
Publish(String),
}Expand description
Errors during revocation blob operations.
Variants§
Malformed(String)
Blob malformed.
InvalidToken(String)
Verification token invalid.
EmailVerificationFailed(String)
Email verification failed.
AlreadyInProgress(String)
Submission already in progress.
ThresholdDecryption(String)
Threshold decryption failed.
Publish(String)
Keyserver publication failed.
Trait Implementations§
Source§impl Debug for RevocationError
impl Debug for RevocationError
Source§impl Display for RevocationError
impl Display for RevocationError
Source§impl Error for RevocationError
impl Error for RevocationError
1.30.0 · 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 RevocationError
impl RefUnwindSafe for RevocationError
impl Send for RevocationError
impl Sync for RevocationError
impl Unpin for RevocationError
impl UnsafeUnpin for RevocationError
impl UnwindSafe for RevocationError
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