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 ==
.source§impl Serialize for InnerInstructions
impl Serialize for InnerInstructions
impl Eq for InnerInstructions
impl StructuralEq for InnerInstructions
impl StructuralPartialEq for InnerInstructions
Auto Trait Implementations§
impl RefUnwindSafe for InnerInstructions
impl Send for InnerInstructions
impl Sync for InnerInstructions
impl Unpin for InnerInstructions
impl UnwindSafe for InnerInstructions
Blanket Implementations§
§impl<T> AbiEnumVisitor for Twhere
T: Serialize + AbiExample + ?Sized,
impl<T> AbiEnumVisitor for Twhere T: Serialize + AbiExample + ?Sized,
default fn visit_for_abi( &self, digester: &mut AbiDigester ) -> Result<AbiDigester, DigestError>
§impl<T> AbiEnumVisitor for Twhere
T: Serialize + ?Sized,
impl<T> AbiEnumVisitor for Twhere T: Serialize + ?Sized,
default fn visit_for_abi( &self, _digester: &mut AbiDigester ) -> Result<AbiDigester, DigestError>
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.