macro_rules! impl_many {
{ $($ty:ty),+ : $trait:ty } => { ... };
{ $($ty:ty),+ : $trait:ty , $($more:tt)+} => { ... };
}Expand description
Implement each trait for every comma-separated type in types, with an empty body.
macro_rules! impl_many {
{ $($ty:ty),+ : $trait:ty } => { ... };
{ $($ty:ty),+ : $trait:ty , $($more:tt)+} => { ... };
}Implement each trait for every comma-separated type in types, with an empty body.