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 Freeze for AccountStorage
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
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> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more