pub struct DecreaseLiquidityV2InstructionAccounts {Show 16 fields
pub nft_owner: Pubkey,
pub nft_account: Pubkey,
pub personal_position: Pubkey,
pub pool_state: Pubkey,
pub protocol_position: Pubkey,
pub token_vault0: Pubkey,
pub token_vault1: Pubkey,
pub tick_array_lower: Pubkey,
pub tick_array_upper: Pubkey,
pub recipient_token_account0: Pubkey,
pub recipient_token_account1: Pubkey,
pub token_program: Pubkey,
pub token_program2022: Pubkey,
pub memo_program: Pubkey,
pub vault0_mint: Pubkey,
pub vault1_mint: Pubkey,
}Fields§
§nft_owner: Pubkey§nft_account: Pubkey§personal_position: Pubkey§pool_state: Pubkey§protocol_position: Pubkey§token_vault0: Pubkey§token_vault1: Pubkey§tick_array_lower: Pubkey§tick_array_upper: Pubkey§recipient_token_account0: Pubkey§recipient_token_account1: Pubkey§token_program: Pubkey§token_program2022: Pubkey§memo_program: Pubkey§vault0_mint: Pubkey§vault1_mint: PubkeyTrait Implementations§
Source§impl PartialEq for DecreaseLiquidityV2InstructionAccounts
impl PartialEq for DecreaseLiquidityV2InstructionAccounts
Source§fn eq(&self, other: &DecreaseLiquidityV2InstructionAccounts) -> bool
fn eq(&self, other: &DecreaseLiquidityV2InstructionAccounts) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DecreaseLiquidityV2InstructionAccounts
Auto Trait Implementations§
impl Freeze for DecreaseLiquidityV2InstructionAccounts
impl RefUnwindSafe for DecreaseLiquidityV2InstructionAccounts
impl Send for DecreaseLiquidityV2InstructionAccounts
impl Sync for DecreaseLiquidityV2InstructionAccounts
impl Unpin for DecreaseLiquidityV2InstructionAccounts
impl UnwindSafe for DecreaseLiquidityV2InstructionAccounts
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> 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