pub struct Params<'k, 'l, 'c> {
pub kin: &'k [u8],
pub label: &'l [u8],
pub context: &'c [u8],
pub use_l: bool,
pub use_separator: bool,
pub use_counter: bool,
}Expand description
Parameters used for KBKDF
Fields§
§kin: &'k [u8]§label: &'l [u8]§context: &'c [u8]§use_l: bool§use_separator: bool§use_counter: boolImplementations§
Auto Trait Implementations§
impl<'k, 'l, 'c> Freeze for Params<'k, 'l, 'c>
impl<'k, 'l, 'c> RefUnwindSafe for Params<'k, 'l, 'c>
impl<'k, 'l, 'c> Send for Params<'k, 'l, 'c>
impl<'k, 'l, 'c> Sync for Params<'k, 'l, 'c>
impl<'k, 'l, 'c> Unpin for Params<'k, 'l, 'c>
impl<'k, 'l, 'c> UnwindSafe for Params<'k, 'l, 'c>
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