pub struct OptionsContractKeys {
pub program_id: Pubkey,
pub options_contract: Pubkey,
pub option_token_pool: Pubkey,
pub extra_key1: Pubkey,
pub extra_key2: Pubkey,
pub extra_key3: Pubkey,
pub extra_key4: Pubkey,
}Fields§
§program_id: Pubkey§options_contract: Pubkey§option_token_pool: Pubkey§extra_key1: Pubkey§extra_key2: Pubkey§extra_key3: Pubkey§extra_key4: PubkeyTrait Implementations§
Source§impl BorshDeserialize for OptionsContractKeyswhere
Pubkey: BorshDeserialize,
impl BorshDeserialize for OptionsContractKeyswhere
Pubkey: BorshDeserialize,
Source§impl BorshSerialize for OptionsContractKeyswhere
Pubkey: BorshSerialize,
impl BorshSerialize for OptionsContractKeyswhere
Pubkey: BorshSerialize,
Source§impl Clone for OptionsContractKeys
impl Clone for OptionsContractKeys
Source§fn clone(&self) -> OptionsContractKeys
fn clone(&self) -> OptionsContractKeys
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OptionsContractKeys
impl Debug for OptionsContractKeys
impl Copy for OptionsContractKeys
Auto Trait Implementations§
impl Freeze for OptionsContractKeys
impl RefUnwindSafe for OptionsContractKeys
impl Send for OptionsContractKeys
impl Sync for OptionsContractKeys
impl Unpin for OptionsContractKeys
impl UnwindSafe for OptionsContractKeys
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> 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