pub struct InMemoryManagedSymmetricKeyProvider { /* private fields */ }Implementations§
Source§impl InMemoryManagedSymmetricKeyProvider
impl InMemoryManagedSymmetricKeyProvider
pub fn new( name: impl Into<String>, keys: BTreeMap<String, LocalSymmetricKey>, ) -> Self
pub fn with_supported_transport_modes<I>(self, modes: I) -> Selfwhere
I: IntoIterator<Item = KeyTransportMode>,
Trait Implementations§
Source§impl Clone for InMemoryManagedSymmetricKeyProvider
impl Clone for InMemoryManagedSymmetricKeyProvider
Source§fn clone(&self) -> InMemoryManagedSymmetricKeyProvider
fn clone(&self) -> InMemoryManagedSymmetricKeyProvider
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ManagedSymmetricKeyProvider for InMemoryManagedSymmetricKeyProvider
impl ManagedSymmetricKeyProvider for InMemoryManagedSymmetricKeyProvider
fn provider_name(&self) -> &str
fn capabilities(&self) -> &ManagedSymmetricKeyProviderCapabilities
fn resolve_key( &self, key_reference: &ManagedSymmetricKeyReference, ) -> Result<LocalSymmetricKey, SdkError>
Auto Trait Implementations§
impl Freeze for InMemoryManagedSymmetricKeyProvider
impl RefUnwindSafe for InMemoryManagedSymmetricKeyProvider
impl Send for InMemoryManagedSymmetricKeyProvider
impl Sync for InMemoryManagedSymmetricKeyProvider
impl Unpin for InMemoryManagedSymmetricKeyProvider
impl UnsafeUnpin for InMemoryManagedSymmetricKeyProvider
impl UnwindSafe for InMemoryManagedSymmetricKeyProvider
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