pub enum EventAccounts<'info> {
    Fill(Box<FillAccounts<'info>>),
    Out(Box<OutAccounts<'info>>),
}
Expand description

These are the additional accounts that need to be provided in the ix for every event that will be processed. For a fill, 2-6 accounts need to be appended to remaining_accounts For an out, 1 account needs to be appended to remaining_accounts

Variants

Fill(Box<FillAccounts<'info>>)

Out(Box<OutAccounts<'info>>)

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.