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

Forward associated types of a Memory trait to another type.

See macros for more information.