pub enum KeyStoreEntry {
PrivateKeyChain(PrivateKeyChain),
Certificate(Certificate),
Secret(Secret),
}Expand description
KeyStoreEntry represents one entry in the keystore
Variants§
Trait Implementations§
Source§impl Clone for KeyStoreEntry
impl Clone for KeyStoreEntry
Source§fn clone(&self) -> KeyStoreEntry
fn clone(&self) -> KeyStoreEntry
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 KeyStoreEntry
impl Debug for KeyStoreEntry
Source§impl PartialEq for KeyStoreEntry
impl PartialEq for KeyStoreEntry
impl Eq for KeyStoreEntry
impl StructuralPartialEq for KeyStoreEntry
Auto Trait Implementations§
impl Freeze for KeyStoreEntry
impl RefUnwindSafe for KeyStoreEntry
impl Send for KeyStoreEntry
impl Sync for KeyStoreEntry
impl Unpin for KeyStoreEntry
impl UnsafeUnpin for KeyStoreEntry
impl UnwindSafe for KeyStoreEntry
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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