macro_rules! forward_host_memory_methods {
    (@ => |$this:ident| $fwd:expr) => { ... };
    (@ref => |$this:ident| $fwd:expr) => { ... };
    (@mut => |$this:ident| $fwd:expr) => { ... };
    (($($func:ident)*) => |$this:ident| $fwd:expr) => { ... };
    (($($func:ident),*) => |$this:ident| $fwd:expr) => { ... };
    (read_opcode => |$this:ident| $fwd:expr) => { ... };
    (read_mem => |$this:ident| $fwd:expr) => { ... };
    (read_mem16 => |$this:ident| $fwd:expr) => { ... };
    (write_mem => |$this:ident| $fwd:expr) => { ... };
    (read_debug => |$this:ident| $fwd:expr) => { ... };
}
Expand description

Forward methods of Memory to a wrapped instance.

See macros for more information.