pub struct OpenPositionOrcaBuilder { /* private fields */ }Expand description
Instruction builder for OpenPositionOrca.
§Accounts:
[writable, signer]authority[]mint_a[]mint_b[]market[writable]tuna_position[writable, signer]tuna_position_mint[writable]tuna_position_ata[writable]tuna_position_ata_a[writable]tuna_position_ata_b[]whirlpool_program[]whirlpool[writable]orca_position[]metadata_update_auth[]token_program_a[]token_program_b[]token2022_program[optional]system_program (default to11111111111111111111111111111111)[]associated_token_program
Implementations§
Source§impl OpenPositionOrcaBuilder
impl OpenPositionOrcaBuilder
pub fn new() -> Self
TUNA accounts
pub fn mint_a(&mut self, mint_a: Pubkey) -> &mut Self
pub fn mint_b(&mut self, mint_b: Pubkey) -> &mut Self
pub fn market(&mut self, market: Pubkey) -> &mut Self
pub fn tuna_position(&mut self, tuna_position: Pubkey) -> &mut Self
pub fn tuna_position_mint(&mut self, tuna_position_mint: Pubkey) -> &mut Self
pub fn tuna_position_ata(&mut self, tuna_position_ata: Pubkey) -> &mut Self
pub fn tuna_position_ata_a(&mut self, tuna_position_ata_a: Pubkey) -> &mut Self
pub fn tuna_position_ata_b(&mut self, tuna_position_ata_b: Pubkey) -> &mut Self
Sourcepub fn whirlpool_program(&mut self, whirlpool_program: Pubkey) -> &mut Self
pub fn whirlpool_program(&mut self, whirlpool_program: Pubkey) -> &mut Self
ORCA accounts
pub fn whirlpool(&mut self, whirlpool: Pubkey) -> &mut Self
pub fn orca_position(&mut self, orca_position: Pubkey) -> &mut Self
pub fn metadata_update_auth( &mut self, metadata_update_auth: Pubkey, ) -> &mut Self
pub fn token_program_a(&mut self, token_program_a: Pubkey) -> &mut Self
pub fn token_program_b(&mut self, token_program_b: Pubkey) -> &mut Self
Sourcepub fn token2022_program(&mut self, token2022_program: Pubkey) -> &mut Self
pub fn token2022_program(&mut self, token2022_program: Pubkey) -> &mut Self
Other accounts
Sourcepub fn system_program(&mut self, system_program: Pubkey) -> &mut Self
pub fn system_program(&mut self, system_program: Pubkey) -> &mut Self
[optional account, default to '11111111111111111111111111111111']
pub fn associated_token_program( &mut self, associated_token_program: Pubkey, ) -> &mut Self
pub fn tick_lower_index(&mut self, tick_lower_index: i32) -> &mut Self
pub fn tick_upper_index(&mut self, tick_upper_index: i32) -> &mut Self
pub fn tick_stop_loss_index(&mut self, tick_stop_loss_index: i32) -> &mut Self
pub fn tick_take_profit_index( &mut self, tick_take_profit_index: i32, ) -> &mut Self
pub fn flags(&mut self, flags: u32) -> &mut Self
Sourcepub fn add_remaining_account(&mut self, account: AccountMeta) -> &mut Self
pub fn add_remaining_account(&mut self, account: AccountMeta) -> &mut Self
Add an additional account to the instruction.
Sourcepub fn add_remaining_accounts(&mut self, accounts: &[AccountMeta]) -> &mut Self
pub fn add_remaining_accounts(&mut self, accounts: &[AccountMeta]) -> &mut Self
Add additional accounts to the instruction.
pub fn instruction(&self) -> Instruction
Trait Implementations§
Source§impl Clone for OpenPositionOrcaBuilder
impl Clone for OpenPositionOrcaBuilder
Source§fn clone(&self) -> OpenPositionOrcaBuilder
fn clone(&self) -> OpenPositionOrcaBuilder
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 OpenPositionOrcaBuilder
impl Debug for OpenPositionOrcaBuilder
Source§impl Default for OpenPositionOrcaBuilder
impl Default for OpenPositionOrcaBuilder
Source§fn default() -> OpenPositionOrcaBuilder
fn default() -> OpenPositionOrcaBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OpenPositionOrcaBuilder
impl RefUnwindSafe for OpenPositionOrcaBuilder
impl Send for OpenPositionOrcaBuilder
impl Sync for OpenPositionOrcaBuilder
impl Unpin for OpenPositionOrcaBuilder
impl UnwindSafe for OpenPositionOrcaBuilder
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> CheckedAs for T
impl<T> CheckedAs for T
Source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
Casts the value.
Source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
Source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
Casts the value.
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 moreSource§impl<Src, Dst> LosslessTryInto<Dst> for Srcwhere
Dst: LosslessTryFrom<Src>,
impl<Src, Dst> LosslessTryInto<Dst> for Srcwhere
Dst: LosslessTryFrom<Src>,
Source§fn lossless_try_into(self) -> Option<Dst>
fn lossless_try_into(self) -> Option<Dst>
Performs the conversion.
Source§impl<Src, Dst> LossyInto<Dst> for Srcwhere
Dst: LossyFrom<Src>,
impl<Src, Dst> LossyInto<Dst> for Srcwhere
Dst: LossyFrom<Src>,
Source§fn lossy_into(self) -> Dst
fn lossy_into(self) -> Dst
Performs the conversion.
Source§impl<T> OverflowingAs for T
impl<T> OverflowingAs for T
Source§fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
Casts the value.
Source§impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
Source§fn overflowing_cast_from(src: Src) -> (Dst, bool)
fn overflowing_cast_from(src: Src) -> (Dst, bool)
Casts the value.
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> SaturatingAs for T
impl<T> SaturatingAs for T
Source§fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
Casts the value.
Source§impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
Source§fn saturating_cast_from(src: Src) -> Dst
fn saturating_cast_from(src: Src) -> Dst
Casts the value.
Source§impl<T> UnwrappedAs for T
impl<T> UnwrappedAs for T
Source§fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
Casts the value.
Source§impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
Source§fn unwrapped_cast_from(src: Src) -> Dst
fn unwrapped_cast_from(src: Src) -> Dst
Casts the value.
Source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Source§impl<T> WrappingAs for T
impl<T> WrappingAs for T
Source§fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
Casts the value.
Source§impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
Source§fn wrapping_cast_from(src: Src) -> Dst
fn wrapping_cast_from(src: Src) -> Dst
Casts the value.