macro_rules! assert_impl {
($type:ty: $($trait:path),+ $(,)?) => { ... };
}
Expand description
Asserts that the type implements all of the given traits.
From https://docs.rs/static_assertions/1.1.0/src/static_assertions/assert_impl.rs.html#113-121