pub struct DecreaseLiquidityCpiAccounts<'a, 'b> {
pub vortex: &'b AccountInfo<'a>,
pub token_program: &'b AccountInfo<'a>,
pub position_authority: &'b AccountInfo<'a>,
pub position: &'b AccountInfo<'a>,
pub position_token_account: &'b AccountInfo<'a>,
pub token_owner_account_a: &'b AccountInfo<'a>,
pub token_owner_account_b: &'b AccountInfo<'a>,
pub token_vault_a: &'b AccountInfo<'a>,
pub token_vault_b: &'b AccountInfo<'a>,
pub tick_array_lower: &'b AccountInfo<'a>,
pub tick_array_upper: &'b AccountInfo<'a>,
pub program_signer: Option<&'b AccountInfo<'a>>,
}Expand description
decrease_liquidity CPI accounts.
Fields§
§vortex: &'b AccountInfo<'a>§token_program: &'b AccountInfo<'a>§position: &'b AccountInfo<'a>§position_token_account: &'b AccountInfo<'a>§token_owner_account_a: &'b AccountInfo<'a>§token_owner_account_b: &'b AccountInfo<'a>§token_vault_a: &'b AccountInfo<'a>§token_vault_b: &'b AccountInfo<'a>§tick_array_lower: &'b AccountInfo<'a>§tick_array_upper: &'b AccountInfo<'a>§program_signer: Option<&'b AccountInfo<'a>>The signer for Fogo Sessions token program CPIs
Auto Trait Implementations§
impl<'a, 'b> Freeze for DecreaseLiquidityCpiAccounts<'a, 'b>
impl<'a, 'b> !RefUnwindSafe for DecreaseLiquidityCpiAccounts<'a, 'b>
impl<'a, 'b> !Send for DecreaseLiquidityCpiAccounts<'a, 'b>
impl<'a, 'b> !Sync for DecreaseLiquidityCpiAccounts<'a, 'b>
impl<'a, 'b> Unpin for DecreaseLiquidityCpiAccounts<'a, 'b>
impl<'a, 'b> !UnwindSafe for DecreaseLiquidityCpiAccounts<'a, 'b>
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