pub struct UpdateVerificationConfig {
pub mint: Pubkey,
pub verification_config_or_mint_authority: Pubkey,
pub instructions_sysvar_or_creator: Pubkey,
pub payer: Pubkey,
pub mint_account: Pubkey,
pub config_account: Pubkey,
pub system_program: Pubkey,
pub account_metas_pda: Option<Pubkey>,
pub transfer_hook_pda: Option<Pubkey>,
pub transfer_hook_program: Option<Pubkey>,
}Expand description
Accounts.
Fields§
§mint: Pubkey§instructions_sysvar_or_creator: Pubkey§payer: Pubkey§mint_account: Pubkey§config_account: Pubkey§system_program: Pubkey§account_metas_pda: Option<Pubkey>§transfer_hook_pda: Option<Pubkey>§transfer_hook_program: Option<Pubkey>Implementations§
Source§impl UpdateVerificationConfig
impl UpdateVerificationConfig
pub fn instruction( &self, args: UpdateVerificationConfigInstructionArgs, ) -> Instruction
pub fn instruction_with_remaining_accounts( &self, args: UpdateVerificationConfigInstructionArgs, remaining_accounts: &[AccountMeta], ) -> Instruction
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UpdateVerificationConfig
impl RefUnwindSafe for UpdateVerificationConfig
impl Send for UpdateVerificationConfig
impl Sync for UpdateVerificationConfig
impl Unpin for UpdateVerificationConfig
impl UnsafeUnpin for UpdateVerificationConfig
impl UnwindSafe for UpdateVerificationConfig
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