2022-09-22 09:14:06 +00:00
|
|
|
error: #[pyclass] cannot have generic parameters. For an explanation, see https://pyo3.rs/latest/class.html#no-generic-parameters
|
2021-10-12 00:52:24 +00:00
|
|
|
--> tests/ui/reject_generics.rs:4:25
|
2019-06-04 05:17:07 +00:00
|
|
|
|
|
|
|
|
4 | struct ClassWithGenerics<A> {
|
2021-01-09 17:33:28 +00:00
|
|
|
| ^
|
2022-09-22 09:14:06 +00:00
|
|
|
|
|
|
|
error: #[pyclass] cannot have lifetime parameters. For an explanation, see https://pyo3.rs/latest/class.html#no-lifetime-parameters
|
|
|
|
--> tests/ui/reject_generics.rs:9:27
|
|
|
|
|
|
|
|
|
9 | struct ClassWithLifetimes<'a> {
|
|
|
|
| ^^
|