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: 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
pub fn visit_each_account(
&self,
work: &mut dyn FnMut(usize, usize) -> Result<(), InstructionError>
) -> Result<(), InstructionError>
pub fn visit_each_account(
&self,
work: &mut dyn FnMut(usize, usize) -> Result<(), InstructionError>
) -> Result<(), InstructionError>
Visit each unique instruction account index once
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
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
pub default fn visit_for_abi(
&self,
digester: &mut AbiDigester
) -> Result<AbiDigester, DigestError>
pub default fn visit_for_abi(
&self,
_digester: &mut AbiDigester
) -> Result<AbiDigester, DigestError>
Mutably borrows from an owned value. Read more