[][src]Struct sputnikvm_network_gallactic::FrontierPatch

pub struct FrontierPatch<A: AccountPatch>(_);

Trait Implementations

impl<A: AccountPatch> Patch for FrontierPatch<A>
[src]

Account patch

Maximum contract size.

Limit of the call stack.

Gas paid for extcode.

Gas paid for BALANCE opcode.

Gas paid for SLOAD opcode.

Gas paid for SUICIDE opcode.

Gas paid for SUICIDE opcode when it hits a new account.

Gas paid for CALL opcode.

Gas paid for EXP opcode for every byte.

Gas paid for a contract creation transaction.

Whether to force code deposit even if it does not have enough gas. Read more

Whether the EVM has DELEGATECALL opcode.

Whether the EVM has STATICCALL opcode.

Whether the EVM has REVERT opcode.

Whether the EVM has RETURNDATASIZE and RETURNDATACOPY opcode.

Whether to throw out of gas error when CALL/CALLCODE/DELEGATECALL requires more than maximum amount of gas. Read more

If true, only consume at maximum l64(after_gas) when CALL/CALLCODE/DELEGATECALL. Read more

Maximum size of the memory, in bytes.

Precompiled contracts at given address, with required code, and its definition. Read more

Auto Trait Implementations

impl<A> Send for FrontierPatch<A> where
    A: Send

impl<A> Sync for FrontierPatch<A> where
    A: Sync

Blanket Implementations

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

Performs the conversion.

impl<T> From for T
[src]

Performs the conversion.

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

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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

Performs the conversion.

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

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

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

impl<T> Same for T

Should always be Self