pub enum PbsKdfEnum {
None,
Scrypt,
Pbkdf2,
}Expand description
Variants§
Trait Implementations§
Source§impl Clone for PbsKdfEnum
impl Clone for PbsKdfEnum
Source§fn clone(&self) -> PbsKdfEnum
fn clone(&self) -> PbsKdfEnum
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 PbsKdfEnum
impl Debug for PbsKdfEnum
Source§impl Default for PbsKdfEnum
impl Default for PbsKdfEnum
Source§fn default() -> PbsKdfEnum
fn default() -> PbsKdfEnum
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PbsKdfEnum
impl<'de> Deserialize<'de> for PbsKdfEnum
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for PbsKdfEnum
impl Display for PbsKdfEnum
Source§impl Hash for PbsKdfEnum
impl Hash for PbsKdfEnum
Source§impl Ord for PbsKdfEnum
impl Ord for PbsKdfEnum
Source§fn cmp(&self, other: &PbsKdfEnum) -> Ordering
fn cmp(&self, other: &PbsKdfEnum) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PbsKdfEnum
impl PartialEq for PbsKdfEnum
Source§fn eq(&self, other: &PbsKdfEnum) -> bool
fn eq(&self, other: &PbsKdfEnum) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PbsKdfEnum
impl PartialOrd for PbsKdfEnum
Source§impl Serialize for PbsKdfEnum
impl Serialize for PbsKdfEnum
impl Copy for PbsKdfEnum
impl Eq for PbsKdfEnum
impl StructuralPartialEq for PbsKdfEnum
Auto Trait Implementations§
impl Freeze for PbsKdfEnum
impl RefUnwindSafe for PbsKdfEnum
impl Send for PbsKdfEnum
impl Sync for PbsKdfEnum
impl Unpin for PbsKdfEnum
impl UnsafeUnpin for PbsKdfEnum
impl UnwindSafe for PbsKdfEnum
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