Trait ethstore::dir::KeyDirectory
[−]
[src]
pub trait KeyDirectory: Send + Sync { fn load(&self) -> Result<Vec<SafeAccount>, Error>; fn insert(&self, account: SafeAccount) -> Result<SafeAccount, Error>; fn update(&self, account: SafeAccount) -> Result<SafeAccount, Error>; fn remove(&self, account: &SafeAccount) -> Result<(), Error>; fn path(&self) -> Option<&PathBuf> { ... } fn as_vault_provider(&self) -> Option<&VaultKeyDirectoryProvider> { ... } }
Keys directory
Required Methods
fn load(&self) -> Result<Vec<SafeAccount>, Error>
Read keys from directory
fn insert(&self, account: SafeAccount) -> Result<SafeAccount, Error>
Insert new key to directory
fn update(&self, account: SafeAccount) -> Result<SafeAccount, Error>
fn remove(&self, account: &SafeAccount) -> Result<(), Error>
Remove key from directory
Provided Methods
fn path(&self) -> Option<&PathBuf>
Get directory filesystem path, if available
fn as_vault_provider(&self) -> Option<&VaultKeyDirectoryProvider>
Return vault provider, if available
Implementors
impl KeyDirectory for GethDirectory
impl KeyDirectory for MemoryDirectory
impl KeyDirectory for ParityDirectory