2024-05-03 07:42:30 +00:00
|
|
|
error[E0277]: the trait bound `Blah: OkWrap<Blah>` is not satisfied
|
2022-10-16 09:35:58 +00:00
|
|
|
--> tests/ui/missing_intopy.rs:3:1
|
|
|
|
|
|
|
|
|
3 | #[pyo3::pyfunction]
|
2024-03-22 20:43:23 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^ the trait `IntoPy<Py<PyAny>>` is not implemented for `Blah`, which is required by `Blah: OkWrap<_>`
|
2022-10-16 09:35:58 +00:00
|
|
|
|
|
2024-05-03 07:42:30 +00:00
|
|
|
= help: the trait `OkWrap<T>` is implemented for `Result<T, E>`
|
2022-11-04 04:29:23 +00:00
|
|
|
= note: required for `Blah` to implement `OkWrap<Blah>`
|
2022-10-16 09:35:58 +00:00
|
|
|
= note: this error originates in the attribute macro `pyo3::pyfunction` (in Nightly builds, run with -Z macro-backtrace for more info)
|