pub struct IncreaseLimitOrder {
pub limit_order_authority: Pubkey,
pub fusion_pool: Pubkey,
pub limit_order: Pubkey,
pub limit_order_token_account: Pubkey,
pub token_mint: Pubkey,
pub token_owner_account: Pubkey,
pub token_vault: Pubkey,
pub tick_array: Pubkey,
pub token_program: Pubkey,
pub memo_program: Pubkey,
}
Expand description
Accounts.
Fields§
§fusion_pool: Pubkey
§limit_order: Pubkey
§limit_order_token_account: Pubkey
§token_mint: Pubkey
§token_owner_account: Pubkey
§token_vault: Pubkey
§tick_array: Pubkey
§token_program: Pubkey
§memo_program: Pubkey
Implementations§
Source§impl IncreaseLimitOrder
impl IncreaseLimitOrder
pub fn instruction( &self, args: IncreaseLimitOrderInstructionArgs, ) -> Instruction
pub fn instruction_with_remaining_accounts( &self, args: IncreaseLimitOrderInstructionArgs, remaining_accounts: &[AccountMeta], ) -> Instruction
Trait Implementations§
Auto Trait Implementations§
impl Freeze for IncreaseLimitOrder
impl RefUnwindSafe for IncreaseLimitOrder
impl Send for IncreaseLimitOrder
impl Sync for IncreaseLimitOrder
impl Unpin for IncreaseLimitOrder
impl UnwindSafe for IncreaseLimitOrder
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