Struct evm::SeqMemory [] [src]

pub struct SeqMemory { /* fields omitted */ }

A sequencial memory. It uses Rust's Vec for internal representation.

Trait Implementations

impl Default for SeqMemory
[src]

[src]

Returns the "default value" for a type. Read more

impl Memory for SeqMemory
[src]

[src]

Check whether write on this index would result in an error. If this function returns Ok, then both write and write_raw on this index should succeed. Read more

[src]

Check whether write on the given index range would result in an error. If this function returns Ok, then both write and write_raw on the given index range should succeed. Read more

[src]

Write value into the index.

[src]

Write only one byte value into the index.

[src]

Read value from the index.

[src]

Read only one byte value from the index.