pub struct CreateMultisig<'a> { /* private fields */ }Expand description
§Description
Builder for the initialize_multisig2 instruction.
Implementations§
Source§impl<'a> CreateMultisig<'a>
impl<'a> CreateMultisig<'a>
Sourcepub fn new(
svm: &'a mut LiteSVM,
payer: &'a Keypair,
signers: &'a [&'a Pubkey],
required_signatures: u8,
) -> Self
pub fn new( svm: &'a mut LiteSVM, payer: &'a Keypair, signers: &'a [&'a Pubkey], required_signatures: u8, ) -> Self
Creates a new instance of initialize_multisig2 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 CreateMultisig<'a>
impl<'a> RefUnwindSafe for CreateMultisig<'a>
impl<'a> Send for CreateMultisig<'a>
impl<'a> Sync for CreateMultisig<'a>
impl<'a> Unpin for CreateMultisig<'a>
impl<'a> !UnwindSafe for CreateMultisig<'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