pub struct EncryptionFactoryOptions {
pub options: HashMap<String, String>,
}Expand description
Holds implementation-specific options for an encryption factory
Fields§
§options: HashMap<String, String>Implementations§
Source§impl EncryptionFactoryOptions
impl EncryptionFactoryOptions
Sourcepub fn to_extension_options<T: ExtensionOptions + Default>(&self) -> Result<T>
pub fn to_extension_options<T: ExtensionOptions + Default>(&self) -> Result<T>
Convert these encryption factory options to an ExtensionOptions instance.
Trait Implementations§
Source§impl Clone for EncryptionFactoryOptions
impl Clone for EncryptionFactoryOptions
Source§fn clone(&self) -> EncryptionFactoryOptions
fn clone(&self) -> EncryptionFactoryOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EncryptionFactoryOptions
impl Debug for EncryptionFactoryOptions
Source§impl Default for EncryptionFactoryOptions
impl Default for EncryptionFactoryOptions
Source§fn default() -> EncryptionFactoryOptions
fn default() -> EncryptionFactoryOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for EncryptionFactoryOptions
impl PartialEq for EncryptionFactoryOptions
impl StructuralPartialEq for EncryptionFactoryOptions
Auto Trait Implementations§
impl Freeze for EncryptionFactoryOptions
impl RefUnwindSafe for EncryptionFactoryOptions
impl Send for EncryptionFactoryOptions
impl Sync for EncryptionFactoryOptions
impl Unpin for EncryptionFactoryOptions
impl UnwindSafe for EncryptionFactoryOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more