pub struct InnerInstructions {
pub index: u8,
pub instructions: Vec<CompiledInstruction>,
}
Fields§
§index: u8
Transaction instruction index
instructions: Vec<CompiledInstruction>
List of inner instructions
Trait Implementations§
source§impl Clone for InnerInstructions
impl Clone for InnerInstructions
source§fn clone(&self) -> InnerInstructions
fn clone(&self) -> InnerInstructions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for InnerInstructions
impl Debug for InnerInstructions
source§impl<'de> Deserialize<'de> for InnerInstructions
impl<'de> Deserialize<'de> for InnerInstructions
source§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
source§impl From<InnerInstructions> for UiInnerInstructions
impl From<InnerInstructions> for UiInnerInstructions
source§fn from(inner_instructions: InnerInstructions) -> Self
fn from(inner_instructions: InnerInstructions) -> Self
Converts to this type from the input type.
source§impl PartialEq<InnerInstructions> for InnerInstructions
impl PartialEq<InnerInstructions> for InnerInstructions
source§fn eq(&self, other: &InnerInstructions) -> bool
fn eq(&self, other: &InnerInstructions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.