[][src]Struct evm_gasometer::Gasometer

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

Methods

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

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

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

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

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

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

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

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

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

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

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

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

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

Trait Implementations

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

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]

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

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,