use rebound::{Type, rebound}; #[rebound] struct GenericStruct { inner: T } #[rebound] struct ConstGenericStruct { inner: [i32; N], } fn main() { Type::from::>(); Type::from::>(); Type::from::>(); Type::from::>(); }