pub struct ParsedInstructionEntity {
pub accounts: Option<String>,
pub data: Option<String>,
pub program_id: Option<String>,
pub parsed: Option<ParsedInstruction>,
pub program: Option<String>,
}
Fields§
§accounts: Option<String>
§data: Option<String>
§program_id: Option<String>
§parsed: Option<ParsedInstruction>
§program: Option<String>
Trait Implementations§
Source§impl Debug for ParsedInstructionEntity
impl Debug for ParsedInstructionEntity
Source§impl<'de> Deserialize<'de> for ParsedInstructionEntity
impl<'de> Deserialize<'de> for ParsedInstructionEntity
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
Auto Trait Implementations§
impl Freeze for ParsedInstructionEntity
impl RefUnwindSafe for ParsedInstructionEntity
impl Send for ParsedInstructionEntity
impl Sync for ParsedInstructionEntity
impl Unpin for ParsedInstructionEntity
impl UnwindSafe for ParsedInstructionEntity
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