pub struct TransactionAccounts { /* private fields */ }
Implementations§
source§impl TransactionAccounts
impl TransactionAccounts
pub fn get(&self, index: IndexOfAccount) -> Option<&RefCell<AccountSharedData>>
pub fn touch(&self, index: IndexOfAccount) -> Result<(), InstructionError>
pub fn touched_count(&self) -> usize
pub fn try_borrow( &self, index: IndexOfAccount ) -> Result<Ref<'_, AccountSharedData>, InstructionError>
pub fn try_borrow_mut( &self, index: IndexOfAccount ) -> Result<RefMut<'_, AccountSharedData>, InstructionError>
pub fn into_accounts(self) -> Vec<AccountSharedData>
Trait Implementations§
source§impl Clone for TransactionAccounts
impl Clone for TransactionAccounts
source§fn clone(&self) -> TransactionAccounts
fn clone(&self) -> TransactionAccounts
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 TransactionAccounts
impl Debug for TransactionAccounts
source§impl PartialEq<TransactionAccounts> for TransactionAccounts
impl PartialEq<TransactionAccounts> for TransactionAccounts
source§fn eq(&self, other: &TransactionAccounts) -> bool
fn eq(&self, other: &TransactionAccounts) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TransactionAccounts
Auto Trait Implementations§
impl !RefUnwindSafe for TransactionAccounts
impl Send for TransactionAccounts
impl !Sync for TransactionAccounts
impl Unpin for TransactionAccounts
impl UnwindSafe for TransactionAccounts
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