pub trait PersistentStorage: KeyStore { // Required methods fn flush(&mut self) -> Result<()>; fn load(&mut self) -> Result<()>; fn location(&self) -> &str; }
Trait for persistent storage backends
Flush any pending writes to persistent storage
Load keys from persistent storage
Get the storage location/path