Struct sp_core::offchain::storage::OffchainDb
source · pub struct OffchainDb<Storage> { /* private fields */ }
Expand description
Offchain DB that implements DbExternalities
for OffchainStorage
.
Implementations§
source§impl<Storage> OffchainDb<Storage>
impl<Storage> OffchainDb<Storage>
Trait Implementations§
source§impl<Storage: Clone> Clone for OffchainDb<Storage>
impl<Storage: Clone> Clone for OffchainDb<Storage>
source§fn clone(&self) -> OffchainDb<Storage>
fn clone(&self) -> OffchainDb<Storage>
Returns a copy 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<Storage: OffchainStorage> DbExternalities for OffchainDb<Storage>
impl<Storage: OffchainStorage> DbExternalities for OffchainDb<Storage>
source§fn local_storage_set(&mut self, kind: StorageKind, key: &[u8], value: &[u8])
fn local_storage_set(&mut self, kind: StorageKind, key: &[u8], value: &[u8])
Sets a value in the local storage. Read more
source§fn local_storage_clear(&mut self, kind: StorageKind, key: &[u8])
fn local_storage_clear(&mut self, kind: StorageKind, key: &[u8])
Removes a value in the local storage. Read more
source§fn local_storage_compare_and_set(
&mut self,
kind: StorageKind,
key: &[u8],
old_value: Option<&[u8]>,
new_value: &[u8]
) -> bool
fn local_storage_compare_and_set( &mut self, kind: StorageKind, key: &[u8], old_value: Option<&[u8]>, new_value: &[u8] ) -> bool
Sets a value in the local storage if it matches current value. Read more
source§fn local_storage_get(
&mut self,
kind: StorageKind,
key: &[u8]
) -> Option<Vec<u8>>
fn local_storage_get( &mut self, kind: StorageKind, key: &[u8] ) -> Option<Vec<u8>>
Gets a value from the local storage. Read more
Auto Trait Implementations§
impl<Storage> RefUnwindSafe for OffchainDb<Storage>where Storage: RefUnwindSafe,
impl<Storage> Send for OffchainDb<Storage>where Storage: Send,
impl<Storage> Sync for OffchainDb<Storage>where Storage: Sync,
impl<Storage> Unpin for OffchainDb<Storage>where Storage: Unpin,
impl<Storage> UnwindSafe for OffchainDb<Storage>where Storage: UnwindSafe,
Blanket Implementations§
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.