We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e69b5a commit 46daa11Copy full SHA for 46daa11
bindings/rust/evmc-vm/src/lib.rs
@@ -5,3 +5,18 @@ pub use evmc_sys as ffi;
5
// TODO: Add convenient helpers for evmc_result
6
// TODO: Add convenient helpers for evmc_execute
7
// TODO: Add a derive macro here for creating evmc_create
8
+
9
+/// EVMC message (call) kind.
10
+pub type MessageKind = ffi::evmc_call_kind;
11
12
+/// EVMC message (call) flags.
13
+pub type MessageFlags = ffi::evmc_flags;
14
15
+/// EVMC status code.
16
+pub type StatusCode = ffi::evmc_status_code;
17
18
+/// EVMC storage status.
19
+pub type StorageStatus = ffi::evmc_storage_status;
20
21
+/// EVMC VM revision.
22
+pub type Revision = ffi::evmc_revision;
0 commit comments