pub struct ParsedInstruction {
pub program: String,
pub program_id: String,
pub parsed: Value,
pub stack_height: Option<u32>,
}
Fields§
§program: String
§program_id: String
§parsed: Value
§stack_height: Option<u32>
Trait Implementations§
Source§impl Clone for ParsedInstruction
impl Clone for ParsedInstruction
Source§fn clone(&self) -> ParsedInstruction
fn clone(&self) -> ParsedInstruction
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 ParsedInstruction
impl Debug for ParsedInstruction
Source§impl<'de> Deserialize<'de> for ParsedInstruction
impl<'de> Deserialize<'de> for ParsedInstruction
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 PartialEq for ParsedInstruction
impl PartialEq for ParsedInstruction
Source§impl Serialize for ParsedInstruction
impl Serialize for ParsedInstruction
impl Eq for ParsedInstruction
impl StructuralPartialEq for ParsedInstruction
Auto Trait Implementations§
impl Freeze for ParsedInstruction
impl RefUnwindSafe for ParsedInstruction
impl Send for ParsedInstruction
impl Sync for ParsedInstruction
impl Unpin for ParsedInstruction
impl UnwindSafe for ParsedInstruction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more