A combine_traits! is a single macro wich can be used to declare a new trait wich is no more than a combination of existing traits.
To create a new Trait call the macro combine_traits!
with the name as the first argument.
After a ;
list all "sub_traits" seperated by ,
.
```rust use combinetraits::combinetraits; use std::fmt::{Display, Debug}; combine_traits!(DisplayAndDebug; Display, Debug);
fn displayvsdebug