Struct solana_evm_loader_program::scope::evm::Storage[][src]

pub struct Storage { /* fields omitted */ }

Implementations

impl Storage[src]

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

pub fn create_temporary() -> Result<Storage, 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, V>(
    &self,
    root: H256
) -> FixedSecureTrieMut<RocksMemoryTrieMut<&DB>, K, V> where
    K: AsRef<[u8]>,
    V: Encodable + Decodable
[src]

impl Storage[src]

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

pub fn set<S>(
    &self,
    key: <S as SubStorage>::Key,
    value: <S as SubStorage>::Value
) where
    S: SubStorage, 
[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<T> Typeable for T where
    T: Any

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