Enum solana_program::stake::state::StakeState
source · pub enum StakeState {
Uninitialized,
Initialized(Meta),
Stake(Meta, Stake),
RewardsPool,
}
👎Deprecated since 1.17.0: Please use
StakeStateV2
instead, and match the third StakeFlags
field when matching StakeStateV2::Stake
to resolve any breakage. For example, if let StakeState::Stake(meta, stake)
becomes if let StakeStateV2::Stake(meta, stake, _stake_flags)
.Variants§
Uninitialized
👎Deprecated since 1.17.0: Please use
StakeStateV2
instead, and match the third StakeFlags
field when matching StakeStateV2::Stake
to resolve any breakage. For example, if let StakeState::Stake(meta, stake)
becomes if let StakeStateV2::Stake(meta, stake, _stake_flags)
.Initialized(Meta)
👎Deprecated since 1.17.0: Please use
StakeStateV2
instead, and match the third StakeFlags
field when matching StakeStateV2::Stake
to resolve any breakage. For example, if let StakeState::Stake(meta, stake)
becomes if let StakeStateV2::Stake(meta, stake, _stake_flags)
.Stake(Meta, Stake)
👎Deprecated since 1.17.0: Please use
StakeStateV2
instead, and match the third StakeFlags
field when matching StakeStateV2::Stake
to resolve any breakage. For example, if let StakeState::Stake(meta, stake)
becomes if let StakeStateV2::Stake(meta, stake, _stake_flags)
.RewardsPool
👎Deprecated since 1.17.0: Please use
StakeStateV2
instead, and match the third StakeFlags
field when matching StakeStateV2::Stake
to resolve any breakage. For example, if let StakeState::Stake(meta, stake)
becomes if let StakeStateV2::Stake(meta, stake, _stake_flags)
.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
fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self>
source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
source§impl BorshDeserialize for StakeState
impl BorshDeserialize for StakeState
fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self>
source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
source§impl BorshSerialize for StakeState
impl BorshSerialize 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§fn default() -> StakeState
fn default() -> StakeState
Returns the “default value” for a type. Read more
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 for StakeState
impl PartialEq for StakeState
source§impl Serialize for StakeState
impl Serialize for StakeState
impl Copy for StakeState
impl StructuralPartialEq for StakeState
Auto Trait Implementations§
impl Freeze for StakeState
impl RefUnwindSafe for StakeState
impl Send for StakeState
impl Sync for StakeState
impl Unpin for StakeState
impl UnwindSafe for StakeState
Blanket Implementations§
source§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, _digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
source§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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