Struct solana_sdk::transaction::TransactionAccountLocks [−][src]
pub struct TransactionAccountLocks<'a> {
pub readonly: Vec<&'a Pubkey>,
pub writable: Vec<&'a Pubkey>,
}
Expand description
Set of accounts that must be locked for safe transaction processing
Fields
readonly: Vec<&'a Pubkey>
List of readonly account key locks
writable: Vec<&'a Pubkey>
List of writable account key locks
Trait Implementations
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl<'a> RefUnwindSafe for TransactionAccountLocks<'a>
impl<'a> Send for TransactionAccountLocks<'a>
impl<'a> Sync for TransactionAccountLocks<'a>
impl<'a> Unpin for TransactionAccountLocks<'a>
impl<'a> UnwindSafe for TransactionAccountLocks<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more