pub enum EncError {
BufferTooSmall {
expected: usize,
provided: usize,
},
RngFailed,
}Available on crate feature
age only.Expand description
Age encode/encrypt errors.
Variants§
Trait Implementations§
source§impl PartialEq<EncError> for EncError
impl PartialEq<EncError> for EncError
impl Copy for EncError
impl Eq for EncError
impl StructuralEq for EncError
impl StructuralPartialEq for EncError
Auto Trait Implementations§
impl RefUnwindSafe for EncError
impl Send for EncError
impl Sync for EncError
impl Unpin for EncError
impl UnwindSafe for EncError
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