pub struct CreateProgramOpenOrdersKeys {
pub open_orders: Pubkey,
pub payer: Pubkey,
pub program_authority: Pubkey,
pub dex_program: Pubkey,
pub system_program: Pubkey,
pub rent: Pubkey,
pub market: Pubkey,
}Fields§
§open_orders: Pubkey§payer: Pubkey§dex_program: Pubkey§system_program: Pubkey§rent: Pubkey§market: PubkeyTrait Implementations§
Source§impl Clone for CreateProgramOpenOrdersKeys
impl Clone for CreateProgramOpenOrdersKeys
Source§fn clone(&self) -> CreateProgramOpenOrdersKeys
fn clone(&self) -> CreateProgramOpenOrdersKeys
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CreateProgramOpenOrdersKeys
Source§impl Debug for CreateProgramOpenOrdersKeys
impl Debug for CreateProgramOpenOrdersKeys
Source§impl From<CreateProgramOpenOrdersAccounts<'_, '_>> for CreateProgramOpenOrdersKeys
impl From<CreateProgramOpenOrdersAccounts<'_, '_>> for CreateProgramOpenOrdersKeys
Source§fn from(accounts: CreateProgramOpenOrdersAccounts<'_, '_>) -> Self
fn from(accounts: CreateProgramOpenOrdersAccounts<'_, '_>) -> Self
Converts to this type from the input type.
Source§impl From<CreateProgramOpenOrdersKeys> for [AccountMeta; 7]
impl From<CreateProgramOpenOrdersKeys> for [AccountMeta; 7]
Source§fn from(keys: CreateProgramOpenOrdersKeys) -> Self
fn from(keys: CreateProgramOpenOrdersKeys) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CreateProgramOpenOrdersKeys
impl PartialEq for CreateProgramOpenOrdersKeys
Source§fn eq(&self, other: &CreateProgramOpenOrdersKeys) -> bool
fn eq(&self, other: &CreateProgramOpenOrdersKeys) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateProgramOpenOrdersKeys
Auto Trait Implementations§
impl Freeze for CreateProgramOpenOrdersKeys
impl RefUnwindSafe for CreateProgramOpenOrdersKeys
impl Send for CreateProgramOpenOrdersKeys
impl Sync for CreateProgramOpenOrdersKeys
impl Unpin for CreateProgramOpenOrdersKeys
impl UnsafeUnpin for CreateProgramOpenOrdersKeys
impl UnwindSafe for CreateProgramOpenOrdersKeys
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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