Struct solana_runtime::message_processor::ThisInvokeContext[][src]

pub struct ThisInvokeContext<'a> {
    pub timings: ExecuteDetailsTimings,
    // some fields omitted
}

Fields

timings: ExecuteDetailsTimings

Implementations

impl<'a> ThisInvokeContext<'a>[src]

pub fn new(
    program_id: &Pubkey,
    rent: Rent,
    pre_accounts: Vec<PreAccount>,
    executables: &'a [(Pubkey, Rc<RefCell<AccountSharedData>>)],
    account_deps: &'a [(Pubkey, Rc<RefCell<AccountSharedData>>)],
    programs: &'a [(Pubkey, ProcessInstructionWithContext)],
    log_collector: Option<Rc<LogCollector>>,
    bpf_compute_budget: BpfComputeBudget,
    executors: Rc<RefCell<Executors>>,
    instruction_recorder: Option<InstructionRecorder>,
    feature_set: Arc<FeatureSet>,
    account_db: Arc<Accounts>,
    ancestors: &'a Ancestors
) -> Self
[src]

Trait Implementations

impl<'a> InvokeContext for ThisInvokeContext<'a>[src]

fn push(&mut self, key: &Pubkey) -> Result<(), InstructionError>[src]

Push a program ID on to the invocation stack

fn pop(&mut self)[src]

Pop a program ID off of the invocation stack

fn invoke_depth(&self) -> usize[src]

Current depth of the invocation stake

fn verify_and_update(
    &mut self,
    message: &Message,
    instruction: &CompiledInstruction,
    accounts: &[Rc<RefCell<AccountSharedData>>],
    caller_write_privileges: Option<&[bool]>
) -> Result<(), InstructionError>
[src]

Verify and update PreAccount state based on program execution

fn get_caller(&self) -> Result<&Pubkey, InstructionError>[src]

Get the program ID of the currently executing program

fn get_programs(&self) -> &[(Pubkey, ProcessInstructionWithContext)][src]

Get a list of built-in programs

fn get_logger(&self) -> Rc<RefCell<dyn Logger>>[src]

Get this invocation’s logger

fn get_bpf_compute_budget(&self) -> &BpfComputeBudget[src]

Get this invocation’s compute budget

fn get_compute_meter(&self) -> Rc<RefCell<dyn ComputeMeter>>[src]

Get this invocation’s compute meter

fn add_executor(&self, pubkey: &Pubkey, executor: Arc<dyn Executor>)[src]

Loaders may need to do work in order to execute a program. Cache the work that can be re-used across executions Read more

fn get_executor(&self, pubkey: &Pubkey) -> Option<Arc<dyn Executor>>[src]

Get the completed loader work that can be re-used across executions

fn record_instruction(&self, instruction: &Instruction)[src]

Record invoked instruction

fn is_feature_active(&self, feature_id: &Pubkey) -> bool[src]

Get the bank’s active feature set

fn get_account(&self, pubkey: &Pubkey) -> Option<Rc<RefCell<AccountSharedData>>>[src]

Get an account from a pre-account

fn update_timing(
    &mut self,
    serialize_us: u64,
    create_vm_us: u64,
    execute_us: u64,
    deserialize_us: u64
)
[src]

Update timing

fn get_sysvar_data(&mut self, id: &Pubkey) -> Option<Rc<Vec<u8>>>[src]

Get sysvar data

Auto Trait Implementations

impl<'a> !RefUnwindSafe for ThisInvokeContext<'a>

impl<'a> !Send for ThisInvokeContext<'a>

impl<'a> !Sync for ThisInvokeContext<'a>

impl<'a> Unpin for ThisInvokeContext<'a>

impl<'a> !UnwindSafe for ThisInvokeContext<'a>

Blanket Implementations

impl<T> AbiExample for T[src]

pub default fn example() -> T[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Pointable for T

pub const ALIGN: usize

The alignment of pointer.

type Init = T

The type for initializers.

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

Initializes a with the given initializer. Read more

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

Dereferences the given pointer. Read more

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

Mutably dereferences the given pointer. Read more

pub unsafe fn drop(ptr: usize)

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

pub fn vzip(self) -> V