You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it's very necessary to support asynchrony for class methods, in the form of something like this.
#[pymethods]implTest{#[new]pubfnnew() -> PyResult<Test>{Ok(Test{})}// now report `async fn` is not yet supported for Python functions.async pub fnasync_test(&mutself) -> PyResult<()>{Ok(())}}
The text was updated successfully, but these errors were encountered:
I think it's very necessary to support asynchrony for class methods, in the form of something like this.
The text was updated successfully, but these errors were encountered: