use crate::*; #[derive(Reflect)] pub struct LinkedList where T: Reflect, { inner: T, } impl LinkedList where T: Reflect {}