macro_rules! implement {
($struct:ident <$($params:ident),+>) => { ... };
($struct:ty) => { ... };
}Expand description
Macro for implementing an opaque Debug implementation.
macro_rules! implement {
($struct:ident <$($params:ident),+>) => { ... };
($struct:ty) => { ... };
}Macro for implementing an opaque Debug implementation.