pub struct StakeInfoResponse {
pub address: String,
pub staked_amount: String,
pub pending_unbonding: String,
pub pending_unbonding_until: u64,
pub claimable_rewards: String,
}Fields§
§address: String§staked_amount: String§pending_unbonding: String§pending_unbonding_until: u64§claimable_rewards: StringTrait Implementations§
Source§impl Clone for StakeInfoResponse
impl Clone for StakeInfoResponse
Source§fn clone(&self) -> StakeInfoResponse
fn clone(&self) -> StakeInfoResponse
Returns a duplicate 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 StakeInfoResponse
impl Debug for StakeInfoResponse
Source§impl<'de> Deserialize<'de> for StakeInfoResponse
impl<'de> Deserialize<'de> for StakeInfoResponse
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
Auto Trait Implementations§
impl Freeze for StakeInfoResponse
impl RefUnwindSafe for StakeInfoResponse
impl Send for StakeInfoResponse
impl Sync for StakeInfoResponse
impl Unpin for StakeInfoResponse
impl UnsafeUnpin for StakeInfoResponse
impl UnwindSafe for StakeInfoResponse
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