pub struct SolanaTransactionInput {
pub slot: u64,
pub block_time: Option<i64>,
pub version: Option<u8>,
pub signatures: Vec<Vec<u8>>,
pub account_keys: Vec<String>,
pub instructions: Vec<RawInstruction>,
pub inner_instructions: Option<Vec<InnerInstructionSet>>,
pub meta: Option<TransactionMetaInput>,
}Expand description
Input transaction + meta. Build from RPC getTransaction or Geyser.
Fields§
§slot: u64§block_time: Option<i64>§version: Option<u8>§signatures: Vec<Vec<u8>>§account_keys: Vec<String>§instructions: Vec<RawInstruction>§inner_instructions: Option<Vec<InnerInstructionSet>>§meta: Option<TransactionMetaInput>Trait Implementations§
Source§impl Clone for SolanaTransactionInput
impl Clone for SolanaTransactionInput
Source§fn clone(&self) -> SolanaTransactionInput
fn clone(&self) -> SolanaTransactionInput
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for SolanaTransactionInput
impl RefUnwindSafe for SolanaTransactionInput
impl Send for SolanaTransactionInput
impl Sync for SolanaTransactionInput
impl Unpin for SolanaTransactionInput
impl UnsafeUnpin for SolanaTransactionInput
impl UnwindSafe for SolanaTransactionInput
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more