use rebound::{Type, rebound}; #[rebound] enum GenericEnum { None, Some(T) } #[rebound] enum ConstGenericEnum { Foo([i32; N]), Bar, } fn main() { Type::from::>(); Type::from::>>(); Type::from::>(); Type::from::>(); }