pyo3/tests/ui/invalid_pyfunctions.stderr

20 lines
702 B
Plaintext
Raw Normal View History

2021-03-09 23:37:01 +00:00
error: Python functions cannot have generic type parameters
--> tests/ui/invalid_pyfunctions.rs:4:21
2021-03-09 23:37:01 +00:00
|
4 | fn generic_function<T>(value: T) {}
| ^
error: Python functions cannot have `impl Trait` arguments
--> tests/ui/invalid_pyfunctions.rs:7:36
2021-03-09 23:37:01 +00:00
|
7 | fn impl_trait_function(impl_trait: impl AsRef<PyAny>) {}
| ^^^^
error: `async fn` is not yet supported for Python functions.
2022-01-13 21:25:23 +00:00
Additional crates such as `pyo3-asyncio` can be used to integrate async Rust and Python. For more information, see https://github.com/PyO3/pyo3/issues/1632
--> tests/ui/invalid_pyfunctions.rs:10:1
|
10 | async fn async_function() {}
| ^^^^^