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 new( nesting_level: usize, instruction_accounts_lamport_sum: u128, program_accounts: &[usize], instruction_accounts: &[InstructionAccount], instruction_data: &[u8] ) -> Self

New

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) -> usize

Number of program accounts

source

pub fn get_number_of_instruction_accounts(&self) -> usize

Number of accounts in this Instruction (without program accounts)

source

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

Assert that enough account 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<usize>

Searches for a program account by its key

source

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

Searches for an instruction account by its key

source

pub fn get_index_of_program_account_in_transaction( &self, program_account_index: usize ) -> Result<usize, 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: usize ) -> Result<usize, 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: usize ) -> Result<Option<usize>, 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: usize ) -> 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: usize ) -> Result<BorrowedAccount<'a>, InstructionError>

Gets an instruction account of this Instruction

source

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

Returns whether an instruction account is a signer

source

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

Returns whether an instruction account is writable

source

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

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

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> AbiExample for T

source§

default fn example() -> T

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 Twhere 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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

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

§

fn vzip(self) -> V