macro_rules! forward_host_io_types {
    (@ => $fwd:ty) => { ... };
    (($($ty:ident)*) => $fwd:ty) => { ... };
    (($($ty:ident),*) => $fwd:ty) => { ... };
    ($ty:ident => $fwd:ty) => { ... };
}
Expand description

Forward associated types of a Io trait to another type.

See macros for more information.