#[repr(C)]pub struct StakeHistoryEntry {
pub effective: u64,
pub activating: u64,
pub deactivating: u64,
}
Fields§
§effective: u64
§activating: u64
§deactivating: u64
Implementations§
Source§impl StakeHistoryEntry
impl StakeHistoryEntry
pub fn with_effective(effective: u64) -> StakeHistoryEntry
pub fn with_effective_and_activating( effective: u64, activating: u64, ) -> StakeHistoryEntry
pub fn with_deactivating(deactivating: u64) -> StakeHistoryEntry
Trait Implementations§
Source§impl Add for StakeHistoryEntry
impl Add for StakeHistoryEntry
Source§type Output = StakeHistoryEntry
type Output = StakeHistoryEntry
The resulting type after applying the
+
operator.Source§fn add(self, rhs: StakeHistoryEntry) -> <StakeHistoryEntry as Add>::Output
fn add(self, rhs: StakeHistoryEntry) -> <StakeHistoryEntry as Add>::Output
Performs the
+
operation. Read moreSource§impl Clone for StakeHistoryEntry
impl Clone for StakeHistoryEntry
Source§fn clone(&self) -> StakeHistoryEntry
fn clone(&self) -> StakeHistoryEntry
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 StakeHistoryEntry
impl Debug for StakeHistoryEntry
Source§impl Default for StakeHistoryEntry
impl Default for StakeHistoryEntry
Source§fn default() -> StakeHistoryEntry
fn default() -> StakeHistoryEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StakeHistoryEntry
impl<'de> Deserialize<'de> for StakeHistoryEntry
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<StakeHistoryEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<StakeHistoryEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StakeHistoryEntry
impl PartialEq for StakeHistoryEntry
Source§impl Serialize for StakeHistoryEntry
impl Serialize for StakeHistoryEntry
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for StakeHistoryEntry
impl StructuralPartialEq for StakeHistoryEntry
Auto Trait Implementations§
impl Freeze for StakeHistoryEntry
impl RefUnwindSafe for StakeHistoryEntry
impl Send for StakeHistoryEntry
impl Sync for StakeHistoryEntry
impl Unpin for StakeHistoryEntry
impl UnwindSafe for StakeHistoryEntry
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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