1 2 3 4 5 6 7 8 9 10 11
extern crate structview; use structview::View; #[derive(Clone, Copy, View)] #[repr(C)] struct Test<T: View> { foo: T, } fn main() {}