pub enum PreAllocatedAccountMapEntry<T: IndexValue> {
Entry(Arc<AccountMapEntryInner<T>>),
Raw((Slot, T)),
}
Expand description
can be used to pre-allocate structures for insertion into accounts index outside of lock
Variants
Entry(Arc<AccountMapEntryInner<T>>)
Raw((Slot, T))
Implementations
sourceimpl<T: IndexValue> PreAllocatedAccountMapEntry<T>
impl<T: IndexValue> PreAllocatedAccountMapEntry<T>
sourcepub fn new(
slot: Slot,
account_info: T,
storage: &Arc<BucketMapHolder<T>>,
store_raw: bool
) -> PreAllocatedAccountMapEntry<T>
pub fn new(
slot: Slot,
account_info: T,
storage: &Arc<BucketMapHolder<T>>,
store_raw: bool
) -> PreAllocatedAccountMapEntry<T>
create an entry that is equivalent to this process:
- new empty (refcount=0, slot_list={})
- update(slot, account_info) This code is called when the first entry [ie. (slot,account_info)] for a pubkey is inserted into the index.
pub fn into_account_map_entry(
self,
storage: &Arc<BucketMapHolder<T>>
) -> Arc<AccountMapEntryInner<T>>
Trait Implementations
sourceimpl<T: IndexValue> From<PreAllocatedAccountMapEntry<T>> for (Slot, T)
impl<T: IndexValue> From<PreAllocatedAccountMapEntry<T>> for (Slot, T)
sourcefn from(source: PreAllocatedAccountMapEntry<T>) -> (Slot, T)
fn from(source: PreAllocatedAccountMapEntry<T>) -> (Slot, T)
Converts to this type from the input type.
sourceimpl<T: IndexValue> ZeroLamport for PreAllocatedAccountMapEntry<T>
impl<T: IndexValue> ZeroLamport for PreAllocatedAccountMapEntry<T>
fn is_zero_lamport(&self) -> bool
Auto Trait Implementations
impl<T> RefUnwindSafe for PreAllocatedAccountMapEntry<T>where
T: RefUnwindSafe,
impl<T> Send for PreAllocatedAccountMapEntry<T>
impl<T> Sync for PreAllocatedAccountMapEntry<T>
impl<T> Unpin for PreAllocatedAccountMapEntry<T>where
T: Unpin,
impl<T> UnwindSafe for PreAllocatedAccountMapEntry<T>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> AbiExample for T
impl<T> AbiExample for T
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more