1 2 3 4 5 6 7 8
#[derive(Clone)] pub struct Struct<A>(A); impl<A> Struct<A> { pub fn new() -> Self { todo!() } }