pub enum PasswordEncoding {
Base64,
Base64AfterChange,
Sha256,
Unknown,
}Expand description
Password encoding types
Variants§
Base64
BASE64 encoding
Base64AfterChange
BASE64 encoding after password change
Sha256
SHA256 encoding (most common)
Unknown
Unknown encoding type
Trait Implementations§
Source§impl Clone for PasswordEncoding
impl Clone for PasswordEncoding
Source§fn clone(&self) -> PasswordEncoding
fn clone(&self) -> PasswordEncoding
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PasswordEncoding
impl Debug for PasswordEncoding
Source§impl PartialEq for PasswordEncoding
impl PartialEq for PasswordEncoding
Source§fn eq(&self, other: &PasswordEncoding) -> bool
fn eq(&self, other: &PasswordEncoding) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PasswordEncoding
Auto Trait Implementations§
impl Freeze for PasswordEncoding
impl RefUnwindSafe for PasswordEncoding
impl Send for PasswordEncoding
impl Sync for PasswordEncoding
impl Unpin for PasswordEncoding
impl UnsafeUnpin for PasswordEncoding
impl UnwindSafe for PasswordEncoding
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