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
sourceimpl Debug for ParsedInstructionEntity
impl Debug for ParsedInstructionEntity
sourceimpl<'de> Deserialize<'de> for ParsedInstructionEntity
impl<'de> Deserialize<'de> for ParsedInstructionEntity
sourcefn 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
sourceimpl Serialize for ParsedInstructionEntity
impl Serialize for ParsedInstructionEntity
Auto Trait Implementations
impl RefUnwindSafe for ParsedInstructionEntity
impl Send for ParsedInstructionEntity
impl Sync for ParsedInstructionEntity
impl Unpin for ParsedInstructionEntity
impl UnwindSafe for ParsedInstructionEntity
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more