Struct evm_state::Storage[][src]

pub struct Storage { /* fields omitted */ }

Implementations

impl Storage[src]

pub fn open_persistent<P: AsRef<Path>>(path: P) -> Result<Self, Error>[src]

pub fn create_temporary() -> Result<Self, Error>[src]

pub fn backup(&self) -> Result<PathBuf, Error>[src]

pub fn restore_from(
    path: impl AsRef<Path>,
    target: impl AsRef<Path>
) -> Result<(), Error>
[src]

pub fn check_root_exist(&self, root: H256) -> bool[src]

Temporary solution to check if anything was purged from bd.

pub fn typed_for<K: AsRef<[u8]>, V: Encodable + Decodable>(
    &self,
    root: H256
) -> FixedSecureTrieMut<RocksMemoryTrieMut<&DB>, K, V>
[src]

impl Storage[src]

pub fn get<S: SubStorage>(&self, key: S::Key) -> Option<S::Value>[src]

pub fn set<S: SubStorage>(&self, key: S::Key, value: S::Value)[src]

Trait Implementations

impl Clone for Storage[src]

impl Debug for Storage[src]

Auto Trait Implementations

impl RefUnwindSafe for Storage

impl Send for Storage

impl Sync for Storage

impl Unpin for Storage

impl UnwindSafe for Storage

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> MaybeDebug for T where
    T: Debug
[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]