pub trait WasmCacheAccess:
Clone
+ Debug
+ Default {
// Required method
fn is_read_write() -> bool;
}Expand description
WASM Cache access level, used to limit dry-ran transactions to read-only cache access.
Required Methods§
Sourcefn is_read_write() -> bool
fn is_read_write() -> bool
Is access read/write?
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.