Struct solana_runtime::accounts::LoadedTransaction
source · pub struct LoadedTransaction {
pub accounts: Vec<TransactionAccount>,
pub program_indices: TransactionProgramIndices,
pub rent: TransactionRent,
pub rent_debits: RentDebits,
}
Fields§
§accounts: Vec<TransactionAccount>
§program_indices: TransactionProgramIndices
§rent: TransactionRent
§rent_debits: RentDebits
Trait Implementations§
source§impl Clone for LoadedTransaction
impl Clone for LoadedTransaction
source§fn clone(&self) -> LoadedTransaction
fn clone(&self) -> LoadedTransaction
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for LoadedTransaction
impl Debug for LoadedTransaction
source§impl PartialEq<LoadedTransaction> for LoadedTransaction
impl PartialEq<LoadedTransaction> for LoadedTransaction
source§fn eq(&self, other: &LoadedTransaction) -> bool
fn eq(&self, other: &LoadedTransaction) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for LoadedTransaction
impl StructuralEq for LoadedTransaction
impl StructuralPartialEq for LoadedTransaction
Auto Trait Implementations§
impl RefUnwindSafe for LoadedTransaction
impl Send for LoadedTransaction
impl Sync for LoadedTransaction
impl Unpin for LoadedTransaction
impl UnwindSafe for LoadedTransaction
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.