c57e5098b8
* Implement IntoPy for arrays of IntoPy * Improve `IntoPyCallbackOutput` compile error
8 lines
76 B
Rust
8 lines
76 B
Rust
struct Blah;
|
|
|
|
#[pyo3::pyfunction]
|
|
fn blah() -> Blah{
|
|
Blah
|
|
}
|
|
|
|
fn main(){} |