use pyo3::prelude::*;
#[pyclass]
struct ClassWithGenerics<A> {
a: A,
}
struct ClassWithLifetimes<'a> {
a: &'a str,
fn main() {}