macro_rules! impl_extension {
() => { ... };
($(attr:$attr:expr),*) => { ... };
($(plugin:$plugin:expr),*) => { ... };
($(op:$op:expr),*) => { ... };
($(attr:$attr:expr),* ; $(plugin:$plugin:expr),*) => { ... };
($(attr:$attr:expr),* ; $(plugin:$plugin:expr),* ; $(op:$op:expr),*) => { ... };
}Expand description
扩展宏实现,用于更简单的 Extension 创建(旧版)