#[repr(C)]pub struct aws_pkcs11_lib_options {
pub filename: aws_byte_cursor,
pub initialize_finalize_behavior: aws_pkcs11_lib_behavior,
}
Expand description
Options for aws_pkcs11_lib_new()
Fields
filename: aws_byte_cursor
Name of PKCS#11 library file to load (UTF-8). Zero out if your application is compiled with PKCS#11 symbols linked in.
initialize_finalize_behavior: aws_pkcs11_lib_behavior
Behavior for calling C_Initialize() and C_Finalize() on the PKCS#11 library.
Trait Implementations
sourceimpl Clone for aws_pkcs11_lib_options
impl Clone for aws_pkcs11_lib_options
sourcefn clone(&self) -> aws_pkcs11_lib_options
fn clone(&self) -> aws_pkcs11_lib_options
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for aws_pkcs11_lib_options
impl Debug for aws_pkcs11_lib_options
sourceimpl Default for aws_pkcs11_lib_options
impl Default for aws_pkcs11_lib_options
sourceimpl PartialEq<aws_pkcs11_lib_options> for aws_pkcs11_lib_options
impl PartialEq<aws_pkcs11_lib_options> for aws_pkcs11_lib_options
sourcefn eq(&self, other: &aws_pkcs11_lib_options) -> bool
fn eq(&self, other: &aws_pkcs11_lib_options) -> bool
impl Copy for aws_pkcs11_lib_options
impl Eq for aws_pkcs11_lib_options
impl StructuralEq for aws_pkcs11_lib_options
impl StructuralPartialEq for aws_pkcs11_lib_options
Auto Trait Implementations
impl RefUnwindSafe for aws_pkcs11_lib_options
impl !Send for aws_pkcs11_lib_options
impl !Sync for aws_pkcs11_lib_options
impl Unpin for aws_pkcs11_lib_options
impl UnwindSafe for aws_pkcs11_lib_options
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more