pub struct AdminUpdateTokenIncentivesInstructionAccounts {
pub authority: Pubkey,
pub global: Pubkey,
pub global_volume_accumulator: Pubkey,
pub mint: Pubkey,
pub global_incentive_token_account: Pubkey,
pub associated_token_program: Pubkey,
pub system_program: Pubkey,
pub token_program: Pubkey,
pub event_authority: Pubkey,
pub program: Pubkey,
}Fields§
§global: Pubkey§global_volume_accumulator: Pubkey§mint: Pubkey§global_incentive_token_account: Pubkey§associated_token_program: Pubkey§system_program: Pubkey§token_program: Pubkey§program: PubkeyTrait Implementations§
Source§impl Clone for AdminUpdateTokenIncentivesInstructionAccounts
impl Clone for AdminUpdateTokenIncentivesInstructionAccounts
Source§fn clone(&self) -> AdminUpdateTokenIncentivesInstructionAccounts
fn clone(&self) -> AdminUpdateTokenIncentivesInstructionAccounts
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<'de> Deserialize<'de> for AdminUpdateTokenIncentivesInstructionAccounts
impl<'de> Deserialize<'de> for AdminUpdateTokenIncentivesInstructionAccounts
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AdminUpdateTokenIncentivesInstructionAccounts
impl PartialEq for AdminUpdateTokenIncentivesInstructionAccounts
Source§fn eq(&self, other: &AdminUpdateTokenIncentivesInstructionAccounts) -> bool
fn eq(&self, other: &AdminUpdateTokenIncentivesInstructionAccounts) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AdminUpdateTokenIncentivesInstructionAccounts
impl StructuralPartialEq for AdminUpdateTokenIncentivesInstructionAccounts
Auto Trait Implementations§
impl Freeze for AdminUpdateTokenIncentivesInstructionAccounts
impl RefUnwindSafe for AdminUpdateTokenIncentivesInstructionAccounts
impl Send for AdminUpdateTokenIncentivesInstructionAccounts
impl Sync for AdminUpdateTokenIncentivesInstructionAccounts
impl Unpin for AdminUpdateTokenIncentivesInstructionAccounts
impl UnwindSafe for AdminUpdateTokenIncentivesInstructionAccounts
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