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