[][src]Struct solana_sdk::instruction::CompiledInstruction

pub struct CompiledInstruction {
    pub program_id_index: u8,
    pub accounts: Vec<u8>,
    pub data: Vec<u8>,
}

An instruction to execute a program

Fields

program_id_index: u8

Index into the transaction keys array indicating the program account that executes this instruction

accounts: Vec<u8>

Ordered indices into the transaction keys array indicating which accounts to pass to the program

data: Vec<u8>

The program input data

Implementations

impl CompiledInstruction[src]

pub fn new<T: Serialize>(
    program_ids_index: u8,
    data: &T,
    accounts: Vec<u8>
) -> Self
[src]

pub fn program_id<'a>(&self, program_ids: &'a [Pubkey]) -> &'a Pubkey[src]

pub fn visit_each_account(
    &self,
    work: &mut dyn FnMut(usize, usize) -> Result<(), InstructionError>
) -> Result<(), InstructionError>
[src]

Visit each unique instruction account index once

Trait Implementations

impl AbiExample for CompiledInstruction[src]

impl Clone for CompiledInstruction[src]

impl Debug for CompiledInstruction[src]

impl<'de> Deserialize<'de> for CompiledInstruction[src]

impl Eq for CompiledInstruction[src]

impl PartialEq<CompiledInstruction> for CompiledInstruction[src]

impl Sanitize for CompiledInstruction[src]

impl Serialize for CompiledInstruction[src]

impl StructuralEq for CompiledInstruction[src]

impl StructuralPartialEq for CompiledInstruction[src]

Auto Trait Implementations

Blanket Implementations

impl<T> AbiEnumVisitor for T where
    T: Serialize + ?Sized
[src]

impl<T> AbiEnumVisitor for T where
    T: AbiExample + Serialize + ?Sized
[src]

impl<T> AbiExample for T[src]

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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.

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