pub struct CreateAssembler {
Show 17 fields pub project: Pubkey, pub assembler: Pubkey, pub collection_mint: Pubkey, pub collection_metadata: Pubkey, pub collection_master_edition: 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 hpl_events: Pubkey, pub clock_sysvar: Pubkey, pub rent_sysvar: Pubkey, pub instructions_sysvar: Pubkey,
}
Expand description

Generated client accounts for CreateAssembler.

Fields§

§project: Pubkey

HIVE CONTROL

§assembler: Pubkey

Assembler state account

§collection_mint: Pubkey

Collection of the nfts generated by this assembler

§collection_metadata: Pubkey

Metadata account of the collection

§collection_master_edition: Pubkey

Master Edition account of the collection

§delegate_authority: Option<Pubkey>§authority: Pubkey

The wallet that holds the authority over the assembler

§payer: Pubkey

The wallet that pays for the rent

§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

§hpl_events: Pubkey

HIVE CONTROL PROGRAM

§clock_sysvar: Pubkey

SYSVAR CLOCK

§rent_sysvar: Pubkey

SYSVAR RENT

§instructions_sysvar: Pubkey

NATIVE INSTRUCTIONS SYSVAR

Trait Implementations§

source§

impl BorshSerialize for CreateAssembler
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 CreateAssembler

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