pub enum KeyInfoManagerType {
OnDisk,
SQLite,
}Expand description
Type of the KeyInfoManager
Variants§
OnDisk
KeyInfoManager storing the mappings on disk
SQLite
KeyInfoManager for storing mappings within a SQLite database on disk.
Trait Implementations§
Source§impl Clone for KeyInfoManagerType
impl Clone for KeyInfoManagerType
Source§fn clone(&self) -> KeyInfoManagerType
fn clone(&self) -> KeyInfoManagerType
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 KeyInfoManagerType
impl Debug for KeyInfoManagerType
Source§impl<'de> Deserialize<'de> for KeyInfoManagerType
impl<'de> Deserialize<'de> for KeyInfoManagerType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for KeyInfoManagerType
Auto Trait Implementations§
impl Freeze for KeyInfoManagerType
impl RefUnwindSafe for KeyInfoManagerType
impl Send for KeyInfoManagerType
impl Sync for KeyInfoManagerType
impl Unpin for KeyInfoManagerType
impl UnwindSafe for KeyInfoManagerType
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