pub struct UnverifyCollectionV1 {
pub authority: Pubkey,
pub delegate_record: Option<Pubkey>,
pub metadata: Pubkey,
pub collection_mint: Pubkey,
pub collection_metadata: Option<Pubkey>,
pub system_program: Pubkey,
pub sysvar_instructions: Pubkey,
}Expand description
Accounts.
Fields§
Creator to verify, collection (or metadata if parent burned) update authority or delegate
delegate_record: Option<Pubkey>Delegate record PDA
metadata: PubkeyMetadata account
collection_mint: PubkeyMint of the Collection
collection_metadata: Option<Pubkey>Metadata Account of the Collection
system_program: PubkeySystem program
sysvar_instructions: PubkeyInstructions sysvar account
Implementations§
Source§impl UnverifyCollectionV1
impl UnverifyCollectionV1
pub fn instruction(&self) -> Instruction
pub fn instruction_with_remaining_accounts( &self, remaining_accounts: &[AccountMeta], ) -> Instruction
Auto Trait Implementations§
impl Freeze for UnverifyCollectionV1
impl RefUnwindSafe for UnverifyCollectionV1
impl Send for UnverifyCollectionV1
impl Sync for UnverifyCollectionV1
impl Unpin for UnverifyCollectionV1
impl UnsafeUnpin for UnverifyCollectionV1
impl UnwindSafe for UnverifyCollectionV1
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