Struct solana_runtime::accounts::Accounts[][src]

pub struct Accounts {
    pub accounts_db: Arc<AccountsDb>,
    // some fields omitted
}
Expand description

This structure handles synchronization for db

Fields

accounts_db: Arc<AccountsDb>

Single global AccountsDb

Implementations

Return true if the slice has any duplicate elements

Slow because lock is held for 1 operation instead of many

scans underlying accounts_db for this delta (slot) with a map function from LoadedAccount to B returns only the latest/current version of B for this slot

Slow because lock is held for 1 operation instead of many. WARNING: This noncached version is only to be used for tests/benchmarking as bypassing the cache in general is not supported

This function will prevent multiple threads from modifying the same account state at the same time

Once accounts are unlocked, new transactions that modify that state can enter the pipeline

Store the accounts into the DB

Purge a slot if it is not a root Root slots cannot be purged

Add a slot to root. Root slots cannot be purged

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.