[][src]Struct algo_rust_sdk::algod::models::Account

pub struct Account {
    pub round: Round,
    pub address: String,
    pub amount: MicroAlgos,
    pub pending_rewards: MicroAlgos,
    pub amount_without_pending_rewards: u64,
    pub rewards: MicroAlgos,
    pub status: String,
}

Account Description

Fields

round: Round

The round for which this information is relevant

address: String

The account public key

amount: MicroAlgos

The total number of MicroAlgos in the account

pending_rewards: MicroAlgos

the amount of MicroAlgos of pending rewards in this account.

amount_without_pending_rewards: u64

the amount of MicroAlgos in the account, without the pending rewards.

rewards: MicroAlgos

Rewards indicates the total rewards of MicroAlgos the account has recieved

status: String

Status indicates the delegation status of the account's MicroAlgos Offline - indicates that the associated account is delegated. Online - indicates that the associated account used as part of the delegation pool. NotParticipating - indicates that the associated account is neither a delegator nor a delegate.

Trait Implementations

impl Debug for Account[src]

impl<'de> Deserialize<'de> for Account[src]

impl Serialize for Account[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,