enum PrkMode {
Expand {
key_bytes: [u8; 64],
key_len: usize,
},
ExtractExpand {
secret: Arc<ZeroizeBoxSlice<u8>>,
salt: [u8; 80],
salt_len: usize,
},
}
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PrkMode
impl RefUnwindSafe for PrkMode
impl Send for PrkMode
impl Sync for PrkMode
impl Unpin for PrkMode
impl UnwindSafe for PrkMode
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