pub struct CreateAccount<'a> { /* private fields */ }Expand description
§Description
Builder for the initialize_account3 instruction.
§Optional fields
owner:payerby default.account_kp:Keypair::new()by default.
Implementations§
Source§impl<'a> CreateAccount<'a>
impl<'a> CreateAccount<'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 the initialize_account3 instruction.
Sourcepub fn account_kp(self, account_kp: Keypair) -> Self
pub fn account_kp(self, account_kp: Keypair) -> Self
Sets the Keypair of the spl account.
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 of the spl account.
Sourcepub fn send(self) -> Result<Pubkey, FailedTransactionMetadata>
pub fn send(self) -> Result<Pubkey, FailedTransactionMetadata>
Sends the transaction.
Auto Trait Implementations§
impl<'a> Freeze for CreateAccount<'a>
impl<'a> !RefUnwindSafe for CreateAccount<'a>
impl<'a> !Send for CreateAccount<'a>
impl<'a> !Sync for CreateAccount<'a>
impl<'a> Unpin for CreateAccount<'a>
impl<'a> !UnwindSafe for CreateAccount<'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