Struct evm_gasometer::Gasometer[][src]

pub struct Gasometer<'config> { /* fields omitted */ }
Expand description

EVM gasometer.

Implementations

impl<'config> Gasometer<'config>[src]

pub fn new(gas_limit: u64, config: &'config Config) -> Self[src]

Create a new gasometer with given gas limit and config.

pub fn gas_cost(&self, cost: GasCost, gas: u64) -> Result<u64, ExitError>[src]

Returns the numerical gas cost value.

pub fn config(&self) -> &'config Config[src]

Reference of the config.

pub fn gas(&self) -> u64[src]

Remaining gas.

pub fn total_used_gas(&self) -> u64[src]

Total used gas.

pub fn refunded_gas(&self) -> i64[src]

Refunded gas.

pub fn fail(&mut self) -> ExitError[src]

Explictly fail the gasometer with out of gas. Return OutOfGas error.

pub fn record_cost(&mut self, cost: u64) -> Result<(), ExitError>[src]

Record an explict cost.

pub fn record_refund(&mut self, refund: i64) -> Result<(), ExitError>[src]

Record an explict refund.

pub fn record_deposit(&mut self, len: usize) -> Result<(), ExitError>[src]

Record CREATE code deposit.

pub fn record_dynamic_cost(
    &mut self,
    cost: GasCost,
    memory: Option<MemoryCost>
) -> Result<(), ExitError>
[src]

Record opcode gas cost.

pub fn record_stipend(&mut self, stipend: u64) -> Result<(), ExitError>[src]

Record opcode stipend.

pub fn record_transaction(
    &mut self,
    cost: TransactionCost
) -> Result<(), ExitError>
[src]

Record transaction cost.

pub fn snapshot(&self) -> Result<Snapshot, ExitError>[src]

Trait Implementations

impl<'config> Clone for Gasometer<'config>[src]

fn clone(&self) -> Gasometer<'config>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<'config> RefUnwindSafe for Gasometer<'config>

impl<'config> Send for Gasometer<'config>

impl<'config> Sync for Gasometer<'config>

impl<'config> Unpin for Gasometer<'config>

impl<'config> UnwindSafe for Gasometer<'config>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.