solana_sdk::transaction_context

Struct InstructionContext

Source
pub struct InstructionContext { /* private fields */ }
Expand description

Loaded instruction shared between runtime and programs.

This context is valid for the entire duration of a (possibly cross program) instruction being processed.

Implementations§

Source§

impl InstructionContext

Source

pub fn configure( &mut self, program_accounts: &[IndexOfAccount], instruction_accounts: &[InstructionAccount], instruction_data: &[u8], )

Used together with TransactionContext::get_next_instruction_context()

Source

pub fn get_stack_height(&self) -> usize

How many Instructions were on the stack after this one was pushed

That is the number of nested parent Instructions plus one (itself).

Source

pub fn get_number_of_program_accounts(&self) -> IndexOfAccount

Number of program accounts

Source

pub fn get_number_of_instruction_accounts(&self) -> IndexOfAccount

Number of accounts in this Instruction (without program accounts)

Source

pub fn check_number_of_instruction_accounts( &self, expected_at_least: IndexOfAccount, ) -> Result<(), InstructionError>

Assert that enough accounts were supplied to this Instruction

Source

pub fn get_instruction_data(&self) -> &[u8]

Data parameter for the programs process_instruction handler

Source

pub fn find_index_of_program_account( &self, transaction_context: &TransactionContext, pubkey: &Pubkey, ) -> Option<IndexOfAccount>

Searches for a program account by its key

Source

pub fn find_index_of_instruction_account( &self, transaction_context: &TransactionContext, pubkey: &Pubkey, ) -> Option<IndexOfAccount>

Searches for an instruction account by its key

Source

pub fn get_index_of_program_account_in_transaction( &self, program_account_index: IndexOfAccount, ) -> Result<IndexOfAccount, InstructionError>

Translates the given instruction wide program_account_index into a transaction wide index

Source

pub fn get_index_of_instruction_account_in_transaction( &self, instruction_account_index: IndexOfAccount, ) -> Result<IndexOfAccount, InstructionError>

Translates the given instruction wide instruction_account_index into a transaction wide index

Source

pub fn is_instruction_account_duplicate( &self, instruction_account_index: IndexOfAccount, ) -> Result<Option<IndexOfAccount>, InstructionError>

Returns Some(instruction_account_index) if this is a duplicate and None if it is the first account with this key

Source

pub fn get_last_program_key<'a, 'b: 'a>( &'a self, transaction_context: &'b TransactionContext, ) -> Result<&'b Pubkey, InstructionError>

Gets the key of the last program account of this Instruction

Source

pub fn try_borrow_last_program_account<'a, 'b: 'a>( &'a self, transaction_context: &'b TransactionContext, ) -> Result<BorrowedAccount<'a>, InstructionError>

Gets the last program account of this Instruction

Source

pub fn try_borrow_program_account<'a, 'b: 'a>( &'a self, transaction_context: &'b TransactionContext, program_account_index: IndexOfAccount, ) -> Result<BorrowedAccount<'a>, InstructionError>

Tries to borrow a program account from this Instruction

Source

pub fn try_borrow_instruction_account<'a, 'b: 'a>( &'a self, transaction_context: &'b TransactionContext, instruction_account_index: IndexOfAccount, ) -> Result<BorrowedAccount<'a>, InstructionError>

Gets an instruction account of this Instruction

Source

pub fn is_instruction_account_signer( &self, instruction_account_index: IndexOfAccount, ) -> Result<bool, InstructionError>

Returns whether an instruction account is a signer

Source

pub fn is_instruction_account_writable( &self, instruction_account_index: IndexOfAccount, ) -> Result<bool, InstructionError>

Returns whether an instruction account is writable

Source

pub fn get_signers( &self, transaction_context: &TransactionContext, ) -> Result<HashSet<Pubkey>, InstructionError>

Calculates the set of all keys of signer instruction accounts in this Instruction

Trait Implementations§

Source§

impl Clone for InstructionContext

Source§

fn clone(&self) -> InstructionContext

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for InstructionContext

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for InstructionContext

Source§

fn default() -> InstructionContext

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

impl PartialEq for InstructionContext

Source§

fn eq(&self, other: &InstructionContext) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for InstructionContext

Source§

impl StructuralPartialEq for InstructionContext

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V