10 lines
159 B
Rust
10 lines
159 B
Rust
|
use pyo3::prelude::*;
|
||
|
|
||
|
#[pyfunction]
|
||
|
fn generic_function<T>(value: T) {}
|
||
|
|
||
|
#[pyfunction]
|
||
|
fn impl_trait_function(impl_trait: impl AsRef<PyAny>) {}
|
||
|
|
||
|
fn main() {}
|