macro_rules! vm_write {
($($tt:tt)*) => { ... };
}👎Deprecated:
Convert any relevant errors to VmError instead of using this macro using for example write!(..)?.
Expand description
Helper macro to perform a write! in a context which errors with
VmResult and returns VmResult<Result<_, E>> on write errors.