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 Error for Error
impl Error for Error
§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
impl Copy for Error
impl Eq for Error
impl StructuralEq for Error
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,
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
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.