tellem/
macros.rs

1#[cfg(feature = "conn")]
2macro_rules! trait_alias {
3    ($name:ident = $($bounds:tt)*) => {
4        pub trait $name: $($bounds)* {}
5        impl<T> $name for T where T: $($bounds)* {}
6    }
7}