pub struct CreateMetadataAccountV3CpiAccounts<'a, 'b> {
pub metadata: &'b AccountInfo<'a>,
pub mint: &'b AccountInfo<'a>,
pub mint_authority: &'b AccountInfo<'a>,
pub payer: &'b AccountInfo<'a>,
pub update_authority: (&'b AccountInfo<'a>, bool),
pub system_program: &'b AccountInfo<'a>,
pub rent: Option<&'b AccountInfo<'a>>,
}Expand description
create_metadata_account_v3 CPI accounts.
Fields§
§metadata: &'b AccountInfo<'a>Metadata key (pda of [‘metadata’, program id, mint id])
mint: &'b AccountInfo<'a>Mint of token asset
Mint authority
payer: &'b AccountInfo<'a>payer
update authority info
system_program: &'b AccountInfo<'a>System program
rent: Option<&'b AccountInfo<'a>>Rent info
Auto Trait Implementations§
impl<'a, 'b> Freeze for CreateMetadataAccountV3CpiAccounts<'a, 'b>
impl<'a, 'b> !RefUnwindSafe for CreateMetadataAccountV3CpiAccounts<'a, 'b>
impl<'a, 'b> !Send for CreateMetadataAccountV3CpiAccounts<'a, 'b>
impl<'a, 'b> !Sync for CreateMetadataAccountV3CpiAccounts<'a, 'b>
impl<'a, 'b> Unpin for CreateMetadataAccountV3CpiAccounts<'a, 'b>
impl<'a, 'b> UnsafeUnpin for CreateMetadataAccountV3CpiAccounts<'a, 'b>
impl<'a, 'b> !UnwindSafe for CreateMetadataAccountV3CpiAccounts<'a, 'b>
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