pub struct SwapInstructionsResponse {
pub token_ledger_instruction: Option<Instruction>,
pub compute_budget_instructions: Vec<Instruction>,
pub setup_instructions: Vec<Instruction>,
pub swap_instruction: Instruction,
pub cleanup_instruction: Option<Instruction>,
pub other_instructions: Vec<Instruction>,
pub address_lookup_table_addresses: Vec<Pubkey>,
pub prioritization_fee_lamports: u64,
pub compute_unit_limit: u32,
pub prioritization_type: Option<PrioritizationType>,
pub dynamic_slippage_report: Option<DynamicSlippageReport>,
pub simulation_error: Option<UiSimulationError>,
}
Fields§
§token_ledger_instruction: Option<Instruction>
§compute_budget_instructions: Vec<Instruction>
§setup_instructions: Vec<Instruction>
§swap_instruction: Instruction
Instruction performing the action of swapping
cleanup_instruction: Option<Instruction>
§other_instructions: Vec<Instruction>
Other instructions that should be included in the transaction. Now, it should only have the Jito tip instruction.
address_lookup_table_addresses: Vec<Pubkey>
§prioritization_fee_lamports: u64
§compute_unit_limit: u32
§prioritization_type: Option<PrioritizationType>
§dynamic_slippage_report: Option<DynamicSlippageReport>
§simulation_error: Option<UiSimulationError>
Trait Implementations§
Source§impl Clone for SwapInstructionsResponse
impl Clone for SwapInstructionsResponse
Source§fn clone(&self) -> SwapInstructionsResponse
fn clone(&self) -> SwapInstructionsResponse
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 SwapInstructionsResponse
impl Debug for SwapInstructionsResponse
Source§impl From<SwapInstructionsResponseInternal> for SwapInstructionsResponse
impl From<SwapInstructionsResponseInternal> for SwapInstructionsResponse
Source§fn from(value: SwapInstructionsResponseInternal) -> Self
fn from(value: SwapInstructionsResponseInternal) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SwapInstructionsResponse
impl RefUnwindSafe for SwapInstructionsResponse
impl Send for SwapInstructionsResponse
impl Sync for SwapInstructionsResponse
impl Unpin for SwapInstructionsResponse
impl UnwindSafe for SwapInstructionsResponse
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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