pub struct RequestRedemptionV2 {Show 22 fields
pub kyc_account: Pubkey,
pub user_wallet: Pubkey,
pub bond_account: Pubkey,
pub mint_account: Pubkey,
pub issuance_account: Pubkey,
pub user_token_account: Pubkey,
pub user_nft_token_account: Pubkey,
pub nft_mint_account: Pubkey,
pub nft_metadata_account: Pubkey,
pub nft_master_edition_account: Pubkey,
pub nft_issuance_vault_account: Pubkey,
pub nft_issuance_vault_token_account: Pubkey,
pub nft_collection_mint: Pubkey,
pub nft_collection_metadata_account: Pubkey,
pub nft_collection_master_edition_account: Pubkey,
pub config_account: Pubkey,
pub token2022_program: Pubkey,
pub associated_token_program: Pubkey,
pub token_program: Pubkey,
pub system_program: Pubkey,
pub metadata_program: Pubkey,
pub sysvar_instructions: Pubkey,
}Expand description
Accounts.
Fields§
§kyc_account: Pubkey§user_wallet: Pubkey§bond_account: Pubkey§mint_account: Pubkey§issuance_account: Pubkey§user_token_account: Pubkey§user_nft_token_account: Pubkey§nft_mint_account: Pubkey§nft_metadata_account: Pubkey§nft_master_edition_account: Pubkey§nft_issuance_vault_account: Pubkey§nft_issuance_vault_token_account: Pubkey§nft_collection_mint: Pubkey§nft_collection_metadata_account: Pubkey§nft_collection_master_edition_account: Pubkey§config_account: Pubkey§token2022_program: Pubkey§associated_token_program: Pubkey§token_program: Pubkey§system_program: Pubkey§metadata_program: Pubkey§sysvar_instructions: PubkeyImplementations§
Source§impl RequestRedemptionV2
impl RequestRedemptionV2
pub fn instruction( &self, args: RequestRedemptionV2InstructionArgs, ) -> Instruction
pub fn instruction_with_remaining_accounts( &self, args: RequestRedemptionV2InstructionArgs, remaining_accounts: &[AccountMeta], ) -> Instruction
Auto Trait Implementations§
impl Freeze for RequestRedemptionV2
impl RefUnwindSafe for RequestRedemptionV2
impl Send for RequestRedemptionV2
impl Sync for RequestRedemptionV2
impl Unpin for RequestRedemptionV2
impl UnwindSafe for RequestRedemptionV2
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