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 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> 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