[][src]Struct eosio_system::RexBalance

pub struct RexBalance {
    pub version: u8,
    pub owner: AccountName,
    pub vote_stake: Asset,
    pub rex_balance: Asset,
    pub matured_rex: i64,
    pub rex_maturities: VecDeque<(TimePointSec, i64)>,
}

https://github.com/EOSIO/eosio.contracts/blob/c046863a65d7e98424312ee8009f0acb493e6231/contracts/eosio.system/include/eosio.system/eosio.system.hpp#L241-L250

Fields

version: u8owner: AccountName

owner of the rex fund

vote_stake: Asset

the amount of CORE_SYMBOL currently included in owner's vote

rex_balance: Asset

the amount of REX owned by owner

matured_rex: i64

matured REX available for selling

rex_maturities: VecDeque<(TimePointSec, i64)>

REX daily maturity buckets

Trait Implementations

impl Clone for RexBalance[src]

impl Debug for RexBalance[src]

impl NumBytes for RexBalance[src]

impl Read for RexBalance[src]

impl Table for RexBalance[src]

type Row = Self

TODO docs

impl Write for RexBalance[src]

Auto Trait Implementations

impl RefUnwindSafe for RexBalance

impl Send for RexBalance

impl Sync for RexBalance

impl Unpin for RexBalance

impl UnwindSafe for RexBalance

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> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.