pub struct AcquireOptions { /* private fields */ }
Expand description

A builder for CryptProvs.

Implementations§

source§

impl AcquireOptions

source

pub fn new() -> AcquireOptions

Returns a new builder with default settings.

source

pub fn container(&mut self, container: &str) -> &mut AcquireOptions

Sets the name for this key container.

This should not be set if verify_context is set.

source

pub fn provider(&mut self, provider: &str) -> &mut AcquireOptions

Sets the name of the CSP to be used.

source

pub fn verify_context(&mut self, verify_context: bool) -> &mut AcquireOptions

If set, private keys will not be accessible or persisted.

source

pub fn new_keyset(&mut self, new_keyset: bool) -> &mut AcquireOptions

If set, the container will be created.

source

pub fn machine_keyset(&mut self, machine_keyset: bool) -> &mut AcquireOptions

If set, the container will be stored as a machine rather than user keys.

source

pub fn silent(&mut self, silent: bool) -> &mut AcquireOptions

If set, an error will be returned if user intervention is required rather than displaying a dialog.

source

pub fn acquire(&self, type_: ProviderType) -> Result<CryptProv>

Acquires a container.

Trait Implementations§

source§

impl Default for AcquireOptions

source§

fn default() -> AcquireOptions

Returns the “default value” for a type. Read more

Auto Trait Implementations§

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, U> TryFrom<U> for T
where U: Into<T>,

§

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>,

§

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.