pub struct AccountInformation {
pub delegated_pool: String,
pub registered: bool,
pub rewards_available: i64,
pub stake_address: String,
pub total_balance: i64,
pub total_rewarded: i64,
pub total_withdrawn: i64,
pub utxo_balance: i64,
}
Fields§
§delegated_pool: String
§registered: bool
§rewards_available: i64
§stake_address: String
§total_balance: i64
§total_rewarded: i64
§total_withdrawn: i64
§utxo_balance: i64
Trait Implementations§
Source§impl Clone for AccountInformation
impl Clone for AccountInformation
Source§fn clone(&self) -> AccountInformation
fn clone(&self) -> AccountInformation
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 AccountInformation
impl Debug for AccountInformation
Source§impl<'de> Deserialize<'de> for AccountInformation
impl<'de> Deserialize<'de> for AccountInformation
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 AccountInformation
impl RefUnwindSafe for AccountInformation
impl Send for AccountInformation
impl Sync for AccountInformation
impl Unpin for AccountInformation
impl UnwindSafe for AccountInformation
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