Struct aptos_secure_storage::OnDiskStorage
source · [−]pub struct OnDiskStorage { /* private fields */ }Expand description
OnDiskStorage represents a key value store that is persisted to the local filesystem and is intended for single threads (or must be wrapped by a Arc<RwLock<>>). This provides no permission checks and simply offers a proof of concept to unblock building of applications without more complex data stores. Internally, it reads and writes all data to a file, which means that it must make copies of all key material which violates the code base. It violates it because the anticipation is that data stores would securely handle key material. This should not be used in production.
Implementations
sourceimpl OnDiskStorage
impl OnDiskStorage
Trait Implementations
sourceimpl From<OnDiskStorage> for Storage
impl From<OnDiskStorage> for Storage
sourcefn from(v: OnDiskStorage) -> Storage
fn from(v: OnDiskStorage) -> Storage
Converts to this type from the input type.
sourceimpl KVStorage for OnDiskStorage
impl KVStorage for OnDiskStorage
sourcefn available(&self) -> Result<(), Error>
fn available(&self) -> Result<(), Error>
Returns an error if the backend service is not online and available.
sourcefn get<V: DeserializeOwned>(&self, key: &str) -> Result<GetResponse<V>, Error>
fn get<V: DeserializeOwned>(&self, key: &str) -> Result<GetResponse<V>, Error>
Retrieves a value from storage and fails if the backend is unavailable or the process has invalid permissions. Read more
sourceimpl TryInto<OnDiskStorage> for Storage
impl TryInto<OnDiskStorage> for Storage
sourcefn try_into(
self
) -> Result<OnDiskStorage, <Self as TryInto<OnDiskStorage>>::Error>
fn try_into(
self
) -> Result<OnDiskStorage, <Self as TryInto<OnDiskStorage>>::Error>
Performs the conversion.
impl CryptoKVStorage for OnDiskStorage
Auto Trait Implementations
impl RefUnwindSafe for OnDiskStorage
impl Send for OnDiskStorage
impl Sync for OnDiskStorage
impl Unpin for OnDiskStorage
impl UnwindSafe for OnDiskStorage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more