[][src]Struct eosio_system::RexPool

pub struct RexPool {
    pub version: u8,
    pub total_lent: Asset,
    pub total_unlent: Asset,
    pub total_rent: Asset,
    pub total_lendable: Asset,
    pub total_rex: Asset,
    pub namebid_proceeds: Asset,
    pub loan_num: u64,
}

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

Fields

version: u8total_lent: Asset

total amount of CORE_SYMBOL in open rex_loans

total_unlent: Asset

total amount of CORE_SYMBOL available to be lent (connector)

total_rent: Asset

fees received in exchange for lent (connector)

total_lendable: Asset

total amount of CORE_SYMBOL that have been lent (total_unlent + total_lent)

total_rex: Asset

total number of REX shares allocated to contributors to total_lendable

namebid_proceeds: Asset

the amount of CORE_SYMBOL to be transferred from namebids to REX pool

loan_num: u64

increments with each new loan

Trait Implementations

impl Clone for RexPool[src]

impl Debug for RexPool[src]

impl NumBytes for RexPool[src]

impl Read for RexPool[src]

impl Table for RexPool[src]

type Row = Self

TODO docs

impl Write for RexPool[src]

Auto Trait Implementations

impl RefUnwindSafe for RexPool

impl Send for RexPool

impl Sync for RexPool

impl Unpin for RexPool

impl UnwindSafe for RexPool

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.