pub enum Error {
Show 16 variants
AdTooLong,
AlgorithmInvalid,
B64Encoding(Error),
KeyIdTooLong,
MemoryTooLittle,
MemoryTooMuch,
OutputTooShort,
OutputTooLong,
PwdTooLong,
SaltTooShort,
SaltTooLong,
SecretTooLong,
ThreadsTooFew,
ThreadsTooMany,
TimeTooSmall,
VersionInvalid,
}
Expand description
Error type.
Variants§
AdTooLong
Associated data is too long.
AlgorithmInvalid
Algorithm identifier invalid.
B64Encoding(Error)
“B64” encoding is invalid.
KeyIdTooLong
Key ID is too long.
MemoryTooLittle
Memory cost is too small.
MemoryTooMuch
Memory cost is too large.
OutputTooShort
Output is too short.
OutputTooLong
Output is too long.
PwdTooLong
Password is too long.
SaltTooShort
Salt is too short.
SaltTooLong
Salt is too long.
SecretTooLong
Secret is too long.
ThreadsTooFew
Not enough threads.
ThreadsTooMany
Too many threads.
TimeTooSmall
Time cost is too small.
VersionInvalid
Invalid version
Trait Implementations§
impl Copy for Error
impl Eq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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