pub struct CreateAssociatedTokenAccount<'a> { /* private fields */ }Expand description
§Description
Builder for the create_associated_token_account instruction.
§Optional fields
owner:payerby default.token_program_id:TOKEN_IDby default.
Implementations§
Source§impl<'a> CreateAssociatedTokenAccount<'a>
impl<'a> CreateAssociatedTokenAccount<'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 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 CreateAssociatedTokenAccount<'a>
impl<'a> !RefUnwindSafe for CreateAssociatedTokenAccount<'a>
impl<'a> !Send for CreateAssociatedTokenAccount<'a>
impl<'a> !Sync for CreateAssociatedTokenAccount<'a>
impl<'a> Unpin for CreateAssociatedTokenAccount<'a>
impl<'a> !UnwindSafe for CreateAssociatedTokenAccount<'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> 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 more