pub struct ExerciseOptionsMultiAccounts {Show 18 fields
pub payer: Pubkey,
pub tenant: Pubkey,
pub market_group: Pubkey,
pub market_meta: Pubkey,
pub market: Pubkey,
pub main_src: Pubkey,
pub options_src: Pubkey,
pub token_dst: Pubkey,
pub liq_vault_main: Pubkey,
pub mint_options: Pubkey,
pub mint_token: Pubkey,
pub mint_main: Pubkey,
pub rev_escrow_tenant: Pubkey,
pub rev_escrow_group: Pubkey,
pub token_program: Pubkey,
pub token_program_main: Pubkey,
pub log_account: Pubkey,
pub mayflower_program: Pubkey,
}Expand description
Generated client accounts for ExerciseOptionsMultiAccounts.
Fields§
§payer: Pubkey§tenant: Pubkey§market_group: Pubkey§market_meta: Pubkey§market: Pubkey§main_src: Pubkey§options_src: Pubkey§token_dst: Pubkey§liq_vault_main: Pubkey§mint_options: Pubkey§mint_token: Pubkey§mint_main: Pubkey§rev_escrow_tenant: Pubkey§rev_escrow_group: Pubkey§token_program: Pubkey§token_program_main: Pubkey§log_account: Pubkey§mayflower_program: PubkeyTrait Implementations§
Source§impl BorshSerialize for ExerciseOptionsMultiAccountswhere
Pubkey: BorshSerialize,
impl BorshSerialize for ExerciseOptionsMultiAccountswhere
Pubkey: BorshSerialize,
Source§impl ToAccountMetas for ExerciseOptionsMultiAccounts
impl ToAccountMetas for ExerciseOptionsMultiAccounts
Source§fn to_account_metas(&self, is_signer: Option<bool>) -> Vec<AccountMeta>
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§
impl Freeze for ExerciseOptionsMultiAccounts
impl RefUnwindSafe for ExerciseOptionsMultiAccounts
impl Send for ExerciseOptionsMultiAccounts
impl Sync for ExerciseOptionsMultiAccounts
impl Unpin for ExerciseOptionsMultiAccounts
impl UnwindSafe for ExerciseOptionsMultiAccounts
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