[][src]Struct eosio_system::NameBid

pub struct NameBid {
    pub newname: AccountName,
    pub high_bidder: AccountName,
    pub high_bid: i64,
    pub last_bid_time: TimePoint,
}

A name bid, which consists of:

Reference implementation

Fields

newname: AccountName

name that the bid is for

high_bidder: AccountName

account name that is the one with the highest bid so far

high_bid: i64

amount of highest bid. negative high_bid == closed auction waiting to be claimed

last_bid_time: TimePoint

time of the highest bid

Auto Trait Implementations

impl RefUnwindSafe for NameBid

impl Send for NameBid

impl Sync for NameBid

impl Unpin for NameBid

impl UnwindSafe for NameBid

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, 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.