pub struct AccountStorage { /* private fields */ }
Implementations§
source§impl AccountStorage
impl AccountStorage
sourcepub fn get_slot_storage_entry(
&self,
slot: Slot
) -> Option<Arc<AccountStorageEntry>>
pub fn get_slot_storage_entry( &self, slot: Slot ) -> Option<Arc<AccountStorageEntry>>
return the append vec for ‘slot’ if it exists This is only ever called when shrink is not possibly running and there is a max of 1 append vec per slot.
sourcepub fn initialize(&mut self, all_storages: AccountStorageMap)
pub fn initialize(&mut self, all_storages: AccountStorageMap)
initialize the storage map to ‘all_storages’
Trait Implementations§
source§impl Debug for AccountStorage
impl Debug for AccountStorage
source§impl Default for AccountStorage
impl Default for AccountStorage
source§fn default() -> AccountStorage
fn default() -> AccountStorage
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for AccountStorage
impl Send for AccountStorage
impl Sync for AccountStorage
impl Unpin for AccountStorage
impl !UnwindSafe for AccountStorage
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more