Struct solana_program::instruction::CompiledInstruction  [−][src]
pub struct CompiledInstruction {
    pub program_id_index: u8,
    pub accounts: Vec<u8>,
    pub data: Vec<u8>,
}Expand description
An instruction to execute a program
Fields
program_id_index: u8Index 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
pub fn visit_each_account(
    &self, 
    work: &mut dyn FnMut(usize, usize) -> Result<(), InstructionError>
) -> Result<(), InstructionError>
[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
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
    __D: Deserializer<'de>, 
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
    __D: Deserializer<'de>, 
[src]Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for CompiledInstruction
impl Send for CompiledInstruction
impl Sync for CompiledInstruction
impl Unpin for CompiledInstruction
impl UnwindSafe for CompiledInstruction
Blanket Implementations
Mutably borrows from an owned value. Read more