pub struct InitializeIssuance {Show 14 fields
pub delegate_account: Pubkey,
pub delegate_wallet: Pubkey,
pub bond_account: Pubkey,
pub upcoming_issuance_account: Pubkey,
pub payment_feed_account: Pubkey,
pub payment_mint_account: Pubkey,
pub payment_account: Pubkey,
pub payment_token_account: Pubkey,
pub payout_account: Pubkey,
pub payout_token_account: Pubkey,
pub associated_token_program: Pubkey,
pub token_program: Pubkey,
pub system_program: Pubkey,
pub current_issuance_account: Option<Pubkey>,
}Expand description
Accounts.
Fields§
§delegate_account: Pubkey§delegate_wallet: Pubkey§bond_account: Pubkey§upcoming_issuance_account: Pubkey§payment_feed_account: Pubkey§payment_mint_account: Pubkey§payment_account: Pubkey§payment_token_account: Pubkey§payout_account: Pubkey§payout_token_account: Pubkey§associated_token_program: Pubkey§token_program: Pubkey§system_program: Pubkey§current_issuance_account: Option<Pubkey>Implementations§
Source§impl InitializeIssuance
impl InitializeIssuance
pub fn instruction( &self, args: InitializeIssuanceInstructionArgs, ) -> Instruction
pub fn instruction_with_remaining_accounts( &self, args: InitializeIssuanceInstructionArgs, remaining_accounts: &[AccountMeta], ) -> Instruction
Auto Trait Implementations§
impl Freeze for InitializeIssuance
impl RefUnwindSafe for InitializeIssuance
impl Send for InitializeIssuance
impl Sync for InitializeIssuance
impl Unpin for InitializeIssuance
impl UnwindSafe for InitializeIssuance
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