pub struct MintInstructionAccounts {Show 15 fields
pub token: Pubkey,
pub token_owner: Pubkey,
pub metadata: Pubkey,
pub master_edition: Pubkey,
pub token_record: Pubkey,
pub mint: Pubkey,
pub authority: Pubkey,
pub delegate_record: Pubkey,
pub payer: Pubkey,
pub system_program: Pubkey,
pub sysvar_instructions: Pubkey,
pub spl_token_program: Pubkey,
pub spl_ata_program: Pubkey,
pub authorization_rules_program: Pubkey,
pub authorization_rules: Pubkey,
}
Fields§
§token: Pubkey
§token_owner: Pubkey
§metadata: Pubkey
§master_edition: Pubkey
§token_record: Pubkey
§mint: Pubkey
§delegate_record: Pubkey
§payer: Pubkey
§system_program: Pubkey
§sysvar_instructions: Pubkey
§spl_token_program: Pubkey
§spl_ata_program: Pubkey
Auto Trait Implementations§
impl Freeze for MintInstructionAccounts
impl RefUnwindSafe for MintInstructionAccounts
impl Send for MintInstructionAccounts
impl Sync for MintInstructionAccounts
impl Unpin for MintInstructionAccounts
impl UnwindSafe for MintInstructionAccounts
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more