pub enum ReencryptionError {
OnOpen(OpenReencryptedError),
OnDecryption(DecryptionError),
}Expand description
Errors that can happen when decrypting a reencrypted ciphertext.
Variants§
OnOpen(OpenReencryptedError)
An error when opening a capsule. See OpenReencryptedError for the options.
OnDecryption(DecryptionError)
An error when decrypting the ciphertext. See DecryptionError for the options.
Trait Implementations§
Source§impl Debug for ReencryptionError
impl Debug for ReencryptionError
Source§impl Display for ReencryptionError
impl Display for ReencryptionError
Source§impl PartialEq for ReencryptionError
impl PartialEq for ReencryptionError
impl Eq for ReencryptionError
impl StructuralPartialEq for ReencryptionError
Auto Trait Implementations§
impl Freeze for ReencryptionError
impl RefUnwindSafe for ReencryptionError
impl Send for ReencryptionError
impl Sync for ReencryptionError
impl Unpin for ReencryptionError
impl UnwindSafe for ReencryptionError
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