pub enum PasswordUtilsError {
General(String),
CommunicationWithThirdPartyApiError(String),
ParseError(String),
}
Variants§
Trait Implementations§
Source§impl Clone for PasswordUtilsError
impl Clone for PasswordUtilsError
Source§fn clone(&self) -> PasswordUtilsError
fn clone(&self) -> PasswordUtilsError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PasswordUtilsError
impl Debug for PasswordUtilsError
Source§impl Display for PasswordUtilsError
impl Display for PasswordUtilsError
Source§impl From<Error> for PasswordUtilsError
impl From<Error> for PasswordUtilsError
Source§fn from(err: Error) -> PasswordUtilsError
fn from(err: Error) -> PasswordUtilsError
Converts to this type from the input type.
Source§impl From<Error> for PasswordUtilsError
impl From<Error> for PasswordUtilsError
Source§fn from(err: Error) -> PasswordUtilsError
fn from(err: Error) -> PasswordUtilsError
Converts to this type from the input type.
Source§impl From<FromHexError> for PasswordUtilsError
impl From<FromHexError> for PasswordUtilsError
Source§fn from(err: FromHexError) -> PasswordUtilsError
fn from(err: FromHexError) -> PasswordUtilsError
Converts to this type from the input type.
Source§impl From<InvalidUri> for PasswordUtilsError
impl From<InvalidUri> for PasswordUtilsError
Source§fn from(err: InvalidUri) -> PasswordUtilsError
fn from(err: InvalidUri) -> PasswordUtilsError
Converts to this type from the input type.
Source§impl From<ParseIntError> for PasswordUtilsError
impl From<ParseIntError> for PasswordUtilsError
Source§fn from(err: ParseIntError) -> PasswordUtilsError
fn from(err: ParseIntError) -> PasswordUtilsError
Converts to this type from the input type.
Source§impl From<Utf8Error> for PasswordUtilsError
impl From<Utf8Error> for PasswordUtilsError
Source§fn from(err: Utf8Error) -> PasswordUtilsError
fn from(err: Utf8Error) -> PasswordUtilsError
Converts to this type from the input type.
Source§impl PartialEq for PasswordUtilsError
impl PartialEq for PasswordUtilsError
impl Eq for PasswordUtilsError
impl StructuralPartialEq for PasswordUtilsError
Auto Trait Implementations§
impl Freeze for PasswordUtilsError
impl RefUnwindSafe for PasswordUtilsError
impl Send for PasswordUtilsError
impl Sync for PasswordUtilsError
impl Unpin for PasswordUtilsError
impl UnwindSafe for PasswordUtilsError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.