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 for TransactionAccounts
impl PartialEq for TransactionAccounts
impl StructuralPartialEq for TransactionAccounts
Auto Trait Implementations§
impl !Freeze for TransactionAccounts
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more