#[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) -> Self
pub fn with_effective_and_activating(effective: u64, activating: u64) -> Self
pub fn with_deactivating(deactivating: u64) -> Self
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§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<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 StakeHistoryEntry
impl PartialEq for StakeHistoryEntry
Source§impl Serialize for StakeHistoryEntry
impl Serialize for StakeHistoryEntry
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