eosio_core 0.2.1

Core types and traits related to EOSIO blockchains
Documentation
//! TODO docs

/// RAM in bytes
pub struct RamBytes(i64);

impl From<i64> for RamBytes {
    #[inline]
    fn from(value: i64) -> Self {
        Self(value)
    }
}

/// Net Weight
pub struct NetWeight(i64);

impl From<i64> for NetWeight {
    #[inline]
    fn from(value: i64) -> Self {
        Self(value)
    }
}

/// CPU Weight
pub struct CpuWeight(i64);

impl From<i64> for CpuWeight {
    #[inline]
    fn from(value: i64) -> Self {
        Self(value)
    }
}