Enum solana_program::stake::state::StakeState
source · pub enum StakeState {
Uninitialized,
Initialized(Meta),
Stake(Meta, Stake),
RewardsPool,
}
Variants§
Implementations§
source§impl StakeState
impl StakeState
Trait Implementations§
source§impl AbiExample for StakeState
impl AbiExample for StakeState
source§impl BorshDeserialize for StakeState
impl BorshDeserialize for StakeState
source§impl BorshSerialize for StakeState
impl BorshSerialize for StakeState
source§impl Clone for StakeState
impl Clone for StakeState
source§fn clone(&self) -> StakeState
fn clone(&self) -> StakeState
Returns a copy 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 StakeState
impl Debug for StakeState
source§impl Default for StakeState
impl Default for StakeState
source§impl<'de> Deserialize<'de> for StakeState
impl<'de> Deserialize<'de> for StakeState
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<StakeState> for StakeState
impl PartialEq<StakeState> for StakeState
source§fn eq(&self, other: &StakeState) -> bool
fn eq(&self, other: &StakeState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.