[][src]Struct solana_stake_program::legacy_stake_state::Stake

pub struct Stake {
    pub delegation: Delegation,
    pub credits_observed: u64,
}

Fields

delegation: Delegationcredits_observed: u64

credits observed is credits from vote account state when delegated or redeemed

Implementations

impl Stake[src]

pub fn stake(
    &self,
    epoch: Epoch,
    history: Option<&StakeHistory>,
    fix_stake_deactivate: bool
) -> u64
[src]

pub fn redeem_rewards(
    &mut self,
    point_value: &PointValue,
    vote_state: &VoteState,
    stake_history: Option<&StakeHistory>,
    inflation_point_calc_tracer: &mut Option<impl FnMut(&InflationPointCalculationEvent)>,
    fix_stake_deactivate: bool
) -> Option<(u64, u64)>
[src]

pub fn calculate_points(
    &self,
    vote_state: &VoteState,
    stake_history: Option<&StakeHistory>,
    inflation_point_calc_tracer: &mut Option<impl FnMut(&InflationPointCalculationEvent)>,
    fix_stake_deactivate: bool
) -> u128
[src]

pub fn calculate_rewards(
    &self,
    point_value: &PointValue,
    vote_state: &VoteState,
    stake_history: Option<&StakeHistory>,
    inflation_point_calc_tracer: &mut Option<impl FnMut(&InflationPointCalculationEvent)>,
    fix_stake_deactivate: bool
) -> Option<(u64, u64, u64)>
[src]

for a given stake and vote_state, calculate what distributions and what updates should be made returns a tuple in the case of a payout of:

  • staker_rewards to be distributed
  • voter_rewards to be distributed
  • new value for credits_observed in the stake

Trait Implementations

impl AbiExample for Stake[src]

impl Clone for Stake[src]

impl Copy for Stake[src]

impl Debug for Stake[src]

impl Default for Stake[src]

impl<'de> Deserialize<'de> for Stake[src]

impl PartialEq<Stake> for Stake[src]

impl Serialize for Stake[src]

impl StructuralPartialEq for Stake[src]

Auto Trait Implementations

Blanket Implementations

impl<T> AbiEnumVisitor for T where
    T: Serialize + ?Sized
[src]

impl<T> AbiEnumVisitor for T where
    T: AbiExample + Serialize + ?Sized
[src]

impl<T> AbiExample for T[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,