pub struct CreateMasterEditionV3CpiAccounts<'a, 'b> {
pub edition: &'b AccountInfo<'a>,
pub mint: &'b AccountInfo<'a>,
pub update_authority: &'b AccountInfo<'a>,
pub mint_authority: &'b AccountInfo<'a>,
pub payer: &'b AccountInfo<'a>,
pub metadata: &'b AccountInfo<'a>,
pub token_program: &'b AccountInfo<'a>,
pub system_program: &'b AccountInfo<'a>,
pub rent: Option<&'b AccountInfo<'a>>,
}Expand description
create_master_edition_v3 CPI accounts.
Fields§
§edition: &'b AccountInfo<'a>Unallocated edition V2 account with address as pda of [‘metadata’, program id, mint, ‘edition’]
mint: &'b AccountInfo<'a>Metadata mint
Update authority
Mint authority on the metadata’s mint - THIS WILL TRANSFER AUTHORITY AWAY FROM THIS KEY
payer: &'b AccountInfo<'a>payer
metadata: &'b AccountInfo<'a>Metadata account
token_program: &'b AccountInfo<'a>Token program
system_program: &'b AccountInfo<'a>System program
rent: Option<&'b AccountInfo<'a>>Rent info
Auto Trait Implementations§
impl<'a, 'b> Freeze for CreateMasterEditionV3CpiAccounts<'a, 'b>
impl<'a, 'b> !RefUnwindSafe for CreateMasterEditionV3CpiAccounts<'a, 'b>
impl<'a, 'b> !Send for CreateMasterEditionV3CpiAccounts<'a, 'b>
impl<'a, 'b> !Sync for CreateMasterEditionV3CpiAccounts<'a, 'b>
impl<'a, 'b> Unpin for CreateMasterEditionV3CpiAccounts<'a, 'b>
impl<'a, 'b> UnsafeUnpin for CreateMasterEditionV3CpiAccounts<'a, 'b>
impl<'a, 'b> !UnwindSafe for CreateMasterEditionV3CpiAccounts<'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