macro_rules! forward_host_io_methods {
    (@ => |$this:ident| $fwd:expr) => { ... };
    (($($func:ident)*) => |$this:ident| $fwd:expr) => { ... };
    (($($func:ident),*) => |$this:ident| $fwd:expr) => { ... };
    (write_io => |$this:ident| $fwd:expr) => { ... };
    (read_io => |$this:ident| $fwd:expr) => { ... };
    (is_irq => |$this:ident| $fwd:expr) => { ... };
    (irq_data => |$this:ident| $fwd:expr) => { ... };
    (reti => |$this:ident| $fwd:expr) => { ... };
}
Expand description

Forward methods of Io to a wrapped instance.

See macros for more information.