pub struct DecreaseLiquidityInstructionAccounts {
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,
}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: PubkeyTrait Implementations§
Source§impl PartialEq for DecreaseLiquidityInstructionAccounts
impl PartialEq for DecreaseLiquidityInstructionAccounts
Source§fn eq(&self, other: &DecreaseLiquidityInstructionAccounts) -> bool
fn eq(&self, other: &DecreaseLiquidityInstructionAccounts) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DecreaseLiquidityInstructionAccounts
Auto Trait Implementations§
impl Freeze for DecreaseLiquidityInstructionAccounts
impl RefUnwindSafe for DecreaseLiquidityInstructionAccounts
impl Send for DecreaseLiquidityInstructionAccounts
impl Sync for DecreaseLiquidityInstructionAccounts
impl Unpin for DecreaseLiquidityInstructionAccounts
impl UnwindSafe for DecreaseLiquidityInstructionAccounts
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