pub struct MarinadeDepositKeys {Show 18 fields
pub marinade_finance_program: Pubkey,
pub state: Pubkey,
pub msol_mint: Pubkey,
pub liq_pool_sol_leg_pda: Pubkey,
pub liq_pool_msol_leg: Pubkey,
pub liq_pool_msol_leg_authority: Pubkey,
pub reserve_pda: Pubkey,
pub transfer_from: Pubkey,
pub mint_to: Pubkey,
pub msol_mint_authority: Pubkey,
pub system_program: Pubkey,
pub token_program: Pubkey,
pub user_wsol_token_account: Pubkey,
pub temp_wsol_token_account: Pubkey,
pub user_transfer_authority: Pubkey,
pub payer: Pubkey,
pub wsol_mint: Pubkey,
pub rent: Pubkey,
}Fields§
§marinade_finance_program: Pubkey§state: Pubkey§msol_mint: Pubkey§liq_pool_sol_leg_pda: Pubkey§liq_pool_msol_leg: Pubkey§reserve_pda: Pubkey§transfer_from: Pubkey§mint_to: Pubkey§system_program: Pubkey§token_program: Pubkey§user_wsol_token_account: Pubkey§temp_wsol_token_account: Pubkey§payer: Pubkey§wsol_mint: Pubkey§rent: PubkeyTrait Implementations§
Source§impl Clone for MarinadeDepositKeys
impl Clone for MarinadeDepositKeys
Source§fn clone(&self) -> MarinadeDepositKeys
fn clone(&self) -> MarinadeDepositKeys
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 MarinadeDepositKeys
Source§impl Debug for MarinadeDepositKeys
impl Debug for MarinadeDepositKeys
Source§impl From<MarinadeDepositAccounts<'_, '_>> for MarinadeDepositKeys
impl From<MarinadeDepositAccounts<'_, '_>> for MarinadeDepositKeys
Source§fn from(accounts: MarinadeDepositAccounts<'_, '_>) -> Self
fn from(accounts: MarinadeDepositAccounts<'_, '_>) -> Self
Converts to this type from the input type.
Source§impl From<MarinadeDepositKeys> for [AccountMeta; 18]
impl From<MarinadeDepositKeys> for [AccountMeta; 18]
Source§fn from(keys: MarinadeDepositKeys) -> Self
fn from(keys: MarinadeDepositKeys) -> Self
Converts to this type from the input type.
Source§impl PartialEq for MarinadeDepositKeys
impl PartialEq for MarinadeDepositKeys
Source§fn eq(&self, other: &MarinadeDepositKeys) -> bool
fn eq(&self, other: &MarinadeDepositKeys) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MarinadeDepositKeys
Auto Trait Implementations§
impl Freeze for MarinadeDepositKeys
impl RefUnwindSafe for MarinadeDepositKeys
impl Send for MarinadeDepositKeys
impl Sync for MarinadeDepositKeys
impl Unpin for MarinadeDepositKeys
impl UnsafeUnpin for MarinadeDepositKeys
impl UnwindSafe for MarinadeDepositKeys
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