pub struct BankExecutorCacheEntry {
prev_epoch_count: u64,
epoch_count: AtomicU64,
executor: Arc<LoadedProgram>,
pub hit_count: AtomicU64,
}
Expand description
An entry of the BankExecutorCache
Fields§
§prev_epoch_count: u64
§epoch_count: AtomicU64
§executor: Arc<LoadedProgram>
§hit_count: AtomicU64
Trait Implementations§
source§impl Clone for BankExecutorCacheEntry
impl Clone for BankExecutorCacheEntry
Auto Trait Implementations§
impl RefUnwindSafe for BankExecutorCacheEntry
impl Send for BankExecutorCacheEntry
impl Sync for BankExecutorCacheEntry
impl Unpin for BankExecutorCacheEntry
impl UnwindSafe for BankExecutorCacheEntry
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