pub struct CreateAssociatedTokenAccountIdempotent<'a> { /* private fields */ }Expand description
§Description
Builder for the create_associated_token_account_idempotent instruction.
§Optional fields
owner:payerby default.token_program_id:TOKEN_IDby default.
Implementations§
Source§impl<'a> CreateAssociatedTokenAccountIdempotent<'a>
impl<'a> CreateAssociatedTokenAccountIdempotent<'a>
Sourcepub fn new(svm: &'a mut LiteSVM, payer: &'a Keypair, mint: &'a Pubkey) -> Self
pub fn new(svm: &'a mut LiteSVM, payer: &'a Keypair, mint: &'a Pubkey) -> Self
Creates a new instance of create_associated_token_account_idempotent instruction.
Sourcepub fn token_program_id(self, program_id: &'a Pubkey) -> Self
pub fn token_program_id(self, program_id: &'a Pubkey) -> Self
Sets the token program id for the instruction.
Sourcepub fn send(self) -> Result<Pubkey, FailedTransactionMetadata>
pub fn send(self) -> Result<Pubkey, FailedTransactionMetadata>
Sends the transaction.
Auto Trait Implementations§
impl<'a> Freeze for CreateAssociatedTokenAccountIdempotent<'a>
impl<'a> RefUnwindSafe for CreateAssociatedTokenAccountIdempotent<'a>
impl<'a> Send for CreateAssociatedTokenAccountIdempotent<'a>
impl<'a> Sync for CreateAssociatedTokenAccountIdempotent<'a>
impl<'a> Unpin for CreateAssociatedTokenAccountIdempotent<'a>
impl<'a> !UnwindSafe for CreateAssociatedTokenAccountIdempotent<'a>
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