macro_rules! impl_eeqclone {
([$($generics:tt)*], $type:ty) => { ... };
($type:ty) => { ... };
}Expand description
Wrapper for both impl_eeq! & impl_eclone!
Generate EguiStructClone & EguiStructEq implementation based on Clone & PartialEq
Usage:
impl_eeqclone!(MyType)
impl_eeqclone!([T], MyType2) //for MyType2<T>