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