pub struct InstructionRequest {Show 23 fields
pub program_id: Vec<Address>,
pub discriminator: Vec<Data>,
pub d1: Vec<D1>,
pub d2: Vec<D2>,
pub d3: Vec<D3>,
pub d4: Vec<D4>,
pub d8: Vec<D8>,
pub a0: Vec<Address>,
pub a1: Vec<Address>,
pub a2: Vec<Address>,
pub a3: Vec<Address>,
pub a4: Vec<Address>,
pub a5: Vec<Address>,
pub a6: Vec<Address>,
pub a7: Vec<Address>,
pub a8: Vec<Address>,
pub a9: Vec<Address>,
pub is_committed: bool,
pub include_transactions: bool,
pub include_transaction_token_balances: bool,
pub include_logs: bool,
pub include_inner_instructions: bool,
pub include_blocks: bool,
}Expand description
Filters for selecting Solana instructions by program ID, discriminator, and accounts.
Fields§
§program_id: Vec<Address>§discriminator: Vec<Data>§d1: Vec<D1>§d2: Vec<D2>§d3: Vec<D3>§d4: Vec<D4>§d8: Vec<D8>§a0: Vec<Address>§a1: Vec<Address>§a2: Vec<Address>§a3: Vec<Address>§a4: Vec<Address>§a5: Vec<Address>§a6: Vec<Address>§a7: Vec<Address>§a8: Vec<Address>§a9: Vec<Address>§is_committed: bool§include_transactions: bool§include_transaction_token_balances: bool§include_logs: bool§include_inner_instructions: bool§include_blocks: boolTrait Implementations§
Source§impl Clone for InstructionRequest
impl Clone for InstructionRequest
Source§fn clone(&self) -> InstructionRequest
fn clone(&self) -> InstructionRequest
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 moreSource§impl Debug for InstructionRequest
impl Debug for InstructionRequest
Source§impl Default for InstructionRequest
impl Default for InstructionRequest
Source§fn default() -> InstructionRequest
fn default() -> InstructionRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for InstructionRequest
impl RefUnwindSafe for InstructionRequest
impl Send for InstructionRequest
impl Sync for InstructionRequest
impl Unpin for InstructionRequest
impl UnwindSafe for InstructionRequest
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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