pub struct OpenBundledPositionBuilder { /* private fields */ }
Expand description
Instruction builder for OpenBundledPosition
.
§Accounts:
[writable]
bundled_position[writable]
position_bundle[]
position_bundle_token_account[signer]
position_bundle_authority[]
whirlpool[writable, signer]
funder[optional]
system_program (default to11111111111111111111111111111111
)[optional]
rent (default toSysvarRent111111111111111111111111111111111
)
Implementations§
§impl OpenBundledPositionBuilder
impl OpenBundledPositionBuilder
pub fn new() -> OpenBundledPositionBuilder
pub fn bundled_position( &mut self, bundled_position: Pubkey, ) -> &mut OpenBundledPositionBuilder
pub fn position_bundle( &mut self, position_bundle: Pubkey, ) -> &mut OpenBundledPositionBuilder
pub fn position_bundle_token_account( &mut self, position_bundle_token_account: Pubkey, ) -> &mut OpenBundledPositionBuilder
pub fn whirlpool( &mut self, whirlpool: Pubkey, ) -> &mut OpenBundledPositionBuilder
pub fn funder(&mut self, funder: Pubkey) -> &mut OpenBundledPositionBuilder
pub fn system_program(
&mut self,
system_program: Pubkey,
) -> &mut OpenBundledPositionBuilder
pub fn system_program( &mut self, system_program: Pubkey, ) -> &mut OpenBundledPositionBuilder
[optional account, default to '11111111111111111111111111111111']
pub fn rent(&mut self, rent: Pubkey) -> &mut OpenBundledPositionBuilder
pub fn rent(&mut self, rent: Pubkey) -> &mut OpenBundledPositionBuilder
[optional account, default to 'SysvarRent111111111111111111111111111111111']
pub fn bundle_index( &mut self, bundle_index: u16, ) -> &mut OpenBundledPositionBuilder
pub fn tick_lower_index( &mut self, tick_lower_index: i32, ) -> &mut OpenBundledPositionBuilder
pub fn tick_upper_index( &mut self, tick_upper_index: i32, ) -> &mut OpenBundledPositionBuilder
pub fn add_remaining_account(
&mut self,
account: AccountMeta,
) -> &mut OpenBundledPositionBuilder
pub fn add_remaining_account( &mut self, account: AccountMeta, ) -> &mut OpenBundledPositionBuilder
Add an additional account to the instruction.
pub fn add_remaining_accounts(
&mut self,
accounts: &[AccountMeta],
) -> &mut OpenBundledPositionBuilder
pub fn add_remaining_accounts( &mut self, accounts: &[AccountMeta], ) -> &mut OpenBundledPositionBuilder
Add additional accounts to the instruction.
pub fn instruction(&self) -> Instruction
Trait Implementations§
§impl Clone for OpenBundledPositionBuilder
impl Clone for OpenBundledPositionBuilder
§fn clone(&self) -> OpenBundledPositionBuilder
fn clone(&self) -> OpenBundledPositionBuilder
Returns a copy 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 more§impl Debug for OpenBundledPositionBuilder
impl Debug for OpenBundledPositionBuilder
§impl Default for OpenBundledPositionBuilder
impl Default for OpenBundledPositionBuilder
§fn default() -> OpenBundledPositionBuilder
fn default() -> OpenBundledPositionBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OpenBundledPositionBuilder
impl RefUnwindSafe for OpenBundledPositionBuilder
impl Send for OpenBundledPositionBuilder
impl Sync for OpenBundledPositionBuilder
impl Unpin for OpenBundledPositionBuilder
impl UnwindSafe for OpenBundledPositionBuilder
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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 more