Struct solana_transaction_status::UiRawMessage
source · pub struct UiRawMessage {
pub header: MessageHeader,
pub account_keys: Vec<String>,
pub recent_blockhash: String,
pub instructions: Vec<UiCompiledInstruction>,
pub address_table_lookups: Option<Vec<UiAddressTableLookup>>,
}
Expand description
A duplicate representation of a Message, in raw format, for pretty JSON serialization
Fields§
§header: MessageHeader
§account_keys: Vec<String>
§recent_blockhash: String
§instructions: Vec<UiCompiledInstruction>
§address_table_lookups: Option<Vec<UiAddressTableLookup>>
Trait Implementations§
source§impl Clone for UiRawMessage
impl Clone for UiRawMessage
source§fn clone(&self) -> UiRawMessage
fn clone(&self) -> UiRawMessage
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 UiRawMessage
impl Debug for UiRawMessage
source§impl<'de> Deserialize<'de> for UiRawMessage
impl<'de> Deserialize<'de> for UiRawMessage
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<UiRawMessage> for UiRawMessage
impl PartialEq<UiRawMessage> for UiRawMessage
source§fn eq(&self, other: &UiRawMessage) -> bool
fn eq(&self, other: &UiRawMessage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.