Struct ParamsBuilder

Source
pub struct ParamsBuilder<'k, 'l, 'c>(/* private fields */);
Expand description

Parameters builders for Params

Implementations§

Source§

impl<'k, 'l, 'c> ParamsBuilder<'k, 'l, 'c>

Source

pub fn build(self) -> Params<'k, 'l, 'c>

Return the built Params

Source

pub fn with_label(self, label: &'l [u8]) -> Self

Set the label for the parameters

Source

pub fn with_context(self, context: &'c [u8]) -> Self

Set the context for the parameters

Source

pub fn use_l(self, use_l: bool) -> Self

During the iterations, append the length of the Prf

Source

pub fn use_separator(self, use_separator: bool) -> Self

During the iterations, separate the label from the context with a NULL byte

Source

pub fn use_counter(self, use_counter: bool) -> Self

During the iterations, update the Prf with the iteration counter

Auto Trait Implementations§

§

impl<'k, 'l, 'c> Freeze for ParamsBuilder<'k, 'l, 'c>

§

impl<'k, 'l, 'c> RefUnwindSafe for ParamsBuilder<'k, 'l, 'c>

§

impl<'k, 'l, 'c> Send for ParamsBuilder<'k, 'l, 'c>

§

impl<'k, 'l, 'c> Sync for ParamsBuilder<'k, 'l, 'c>

§

impl<'k, 'l, 'c> Unpin for ParamsBuilder<'k, 'l, 'c>

§

impl<'k, 'l, 'c> UnwindSafe for ParamsBuilder<'k, 'l, 'c>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.