Struct LockPositionBuilder
pub struct LockPositionBuilder { /* private fields */ }
Expand description
Instruction builder for LockPosition
.
§Accounts:
[writable, signer]
funder[signer]
position_authority[]
position[]
position_mint[writable]
position_token_account[writable]
lock_config[]
whirlpool[]
token2022_program[optional]
system_program (default to11111111111111111111111111111111
)
Implementations§
§impl LockPositionBuilder
impl LockPositionBuilder
pub fn new() -> LockPositionBuilder
pub fn funder(&mut self, funder: Pubkey) -> &mut LockPositionBuilder
pub fn position(&mut self, position: Pubkey) -> &mut LockPositionBuilder
pub fn position_mint( &mut self, position_mint: Pubkey, ) -> &mut LockPositionBuilder
pub fn position_token_account( &mut self, position_token_account: Pubkey, ) -> &mut LockPositionBuilder
pub fn lock_config(&mut self, lock_config: Pubkey) -> &mut LockPositionBuilder
pub fn whirlpool(&mut self, whirlpool: Pubkey) -> &mut LockPositionBuilder
pub fn token2022_program( &mut self, token2022_program: Pubkey, ) -> &mut LockPositionBuilder
pub fn system_program(
&mut self,
system_program: Pubkey,
) -> &mut LockPositionBuilder
pub fn system_program( &mut self, system_program: Pubkey, ) -> &mut LockPositionBuilder
[optional account, default to '11111111111111111111111111111111']
pub fn lock_type(&mut self, lock_type: LockType) -> &mut LockPositionBuilder
pub fn add_remaining_account(
&mut self,
account: AccountMeta,
) -> &mut LockPositionBuilder
pub fn add_remaining_account( &mut self, account: AccountMeta, ) -> &mut LockPositionBuilder
Add an additional account to the instruction.
pub fn add_remaining_accounts(
&mut self,
accounts: &[AccountMeta],
) -> &mut LockPositionBuilder
pub fn add_remaining_accounts( &mut self, accounts: &[AccountMeta], ) -> &mut LockPositionBuilder
Add additional accounts to the instruction.
pub fn instruction(&self) -> Instruction
Trait Implementations§
§impl Clone for LockPositionBuilder
impl Clone for LockPositionBuilder
§fn clone(&self) -> LockPositionBuilder
fn clone(&self) -> LockPositionBuilder
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 LockPositionBuilder
impl Debug for LockPositionBuilder
§impl Default for LockPositionBuilder
impl Default for LockPositionBuilder
§fn default() -> LockPositionBuilder
fn default() -> LockPositionBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LockPositionBuilder
impl RefUnwindSafe for LockPositionBuilder
impl Send for LockPositionBuilder
impl Sync for LockPositionBuilder
impl Unpin for LockPositionBuilder
impl UnwindSafe for LockPositionBuilder
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,
§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