macro_rules! dyn_impl_methods {
{ $(
fn $name:ident(
,
$( $param:ident: $ptype:ty ),*
) -> $ret:ty;
)* } => { ... };
}Expand description
Define ordinary methods in impl DynProvider
This macro exists mostly to avoid copypaste mistakes where we (for example)
implement block_advance by calling release_advance.