[][src]Struct eosio_bios::BlockHeader

pub struct BlockHeader {
    pub timestamp: u32,
    pub producer: AccountName,
    pub confirmed: u16,
    pub previous: Checksum256,
    pub transaction_mroot: Checksum256,
    pub action_mroot: Checksum256,
    pub schedule_version: u32,
    pub new_producers: Option<ProducerSchedule>,
}

Fields

timestamp: u32producer: AccountNameconfirmed: u16previous: Checksum256transaction_mroot: Checksum256action_mroot: Checksum256schedule_version: u32new_producers: Option<ProducerSchedule>

Trait Implementations

impl Clone for BlockHeader[src]

impl Default for BlockHeader[src]

impl NumBytes for BlockHeader[src]

impl Read for BlockHeader[src]

impl Write for BlockHeader[src]

Auto Trait Implementations

impl RefUnwindSafe for BlockHeader

impl Send for BlockHeader

impl Sync for BlockHeader

impl Unpin for BlockHeader

impl UnwindSafe for BlockHeader

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.