pub struct BurnNFT {
Show 17 fields pub project: Pubkey, pub assembler: Pubkey, pub nft: Pubkey, pub nft_mint: Pubkey, pub nft_metadata: Pubkey, pub nft_master_edition: Pubkey, pub token_account: Pubkey, pub unique_constraint: Option<Pubkey>, pub delegate_authority: Option<Pubkey>, pub authority: Pubkey, pub payer: Pubkey, pub vault: Pubkey, pub system_program: Pubkey, pub hive_control: Pubkey, pub token_program: Pubkey, pub token_metadata_program: Pubkey, pub instructions_sysvar: Pubkey,
}
Expand description

Generated client accounts for BurnNFT.

Fields§

§project: Pubkey§assembler: Pubkey

Assembler state account

§nft: Pubkey

NFT account

§nft_mint: Pubkey

NFT mint account

§nft_metadata: Pubkey

Metadata account of the NFT

§nft_master_edition: Pubkey

Master Edition account of the NFT

§token_account: Pubkey

NFT token account

§unique_constraint: Option<Pubkey>

NFT unique constraint

§delegate_authority: Option<Pubkey>§authority: Pubkey

The wallet that holds the pre mint authority over this NFT

§payer: Pubkey

Payer account

§vault: Pubkey§system_program: Pubkey

NATIVE SYSTEM PROGRAM

§hive_control: Pubkey

HIVE CONTROL PROGRAM

§token_program: Pubkey

SPL TOKEN PROGRAM

§token_metadata_program: Pubkey

METAPLEX TOKEN METADATA PROGRAM

§instructions_sysvar: Pubkey

NATIVE Instructions SYSVAR

Trait Implementations§

source§

impl BorshSerialize for BurnNFT
where Pubkey: BorshSerialize, Option<Pubkey>: BorshSerialize,

source§

fn serialize<W: Write>(&self, writer: &mut W) -> Result<(), Error>

§

fn try_to_vec(&self) -> Result<Vec<u8>, Error>

Serialize this instance into a vector of bytes.
source§

impl ToAccountMetas for BurnNFT

source§

fn to_account_metas(&self, is_signer: Option<bool>) -> Vec<AccountMeta>

is_signer is given as an optional override for the signer meta field. This covers the edge case when a program-derived-address needs to relay a transaction from a client to another program but sign the transaction before the relay. The client cannot mark the field as a signer, and so we have to override the is_signer meta field given by the client.

Auto Trait Implementations§

Blanket Implementations§

§

impl<T> AbiExample for T

§

default fn example() -> T

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V