pub struct Pbkdf2Params {
pub salt: Pbkdf2Salt,
pub iteration_count: u64,
pub key_length: Option<u64>,
pub prf: Box<AlgorithmIdentifier>,
}Fields§
§salt: Pbkdf2Salt§iteration_count: u64§key_length: Option<u64>§prf: Box<AlgorithmIdentifier>Implementations§
Trait Implementations§
Source§impl Clone for Pbkdf2Params
impl Clone for Pbkdf2Params
Source§fn clone(&self) -> Pbkdf2Params
fn clone(&self) -> Pbkdf2Params
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 Pbkdf2Params
impl Debug for Pbkdf2Params
Source§impl PartialEq for Pbkdf2Params
impl PartialEq for Pbkdf2Params
impl Eq for Pbkdf2Params
impl StructuralPartialEq for Pbkdf2Params
Auto Trait Implementations§
impl Freeze for Pbkdf2Params
impl RefUnwindSafe for Pbkdf2Params
impl Send for Pbkdf2Params
impl Sync for Pbkdf2Params
impl Unpin for Pbkdf2Params
impl UnwindSafe for Pbkdf2Params
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