Struct anchor_spl::dex::SettleFunds[][src]

pub struct SettleFunds<'info> {
    pub market: AccountInfo<'info>,
    pub open_orders: AccountInfo<'info>,
    pub open_orders_authority: AccountInfo<'info>,
    pub coin_vault: AccountInfo<'info>,
    pub pc_vault: AccountInfo<'info>,
    pub coin_wallet: AccountInfo<'info>,
    pub pc_wallet: AccountInfo<'info>,
    pub vault_signer: AccountInfo<'info>,
    pub token_program: AccountInfo<'info>,
}

Fields

market: AccountInfo<'info>open_orders: AccountInfo<'info>open_orders_authority: AccountInfo<'info>coin_vault: AccountInfo<'info>pc_vault: AccountInfo<'info>coin_wallet: AccountInfo<'info>pc_wallet: AccountInfo<'info>vault_signer: AccountInfo<'info>token_program: AccountInfo<'info>

Trait Implementations

impl<'info> Accounts<'info> for SettleFunds<'info>[src]

fn try_accounts(
    program_id: &Pubkey,
    accounts: &mut &[AccountInfo<'info>]
) -> Result<Self, ProgramError>
[src]

Returns the validated accounts struct. What constitutes “valid” is program dependent. However, users of these types should never have to worry about account substitution attacks. For example, if a program expects a Mint account from the SPL token program in a particular field, then it should be impossible for this method to return Ok if any other account type is given–from the SPL token program or elsewhere. Read more

impl<'info> AccountsExit<'info> for SettleFunds<'info>[src]

fn exit(&self, program_id: &Pubkey) -> ProgramResult[src]

program_id is the currently executing program.

impl<'info> ToAccountInfos<'info> for SettleFunds<'info>[src]

impl<'info> ToAccountMetas for SettleFunds<'info>[src]

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

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. Read more

Auto Trait Implementations

impl<'info> !RefUnwindSafe for SettleFunds<'info>

impl<'info> !Send for SettleFunds<'info>

impl<'info> !Sync for SettleFunds<'info>

impl<'info> Unpin for SettleFunds<'info>

impl<'info> !UnwindSafe for SettleFunds<'info>

Blanket Implementations

impl<T> AbiExample for T

pub default fn example() -> T

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

pub fn vzip(self) -> V