2021-01-09 17:33:28 +00:00
|
|
|
use pyo3::prelude::*;
|
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
struct MyClass {}
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
#[classattr]
|
|
|
|
fn class_attr_with_args(foo: i32) {}
|
|
|
|
}
|
|
|
|
|
2021-04-17 21:22:06 +00:00
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
#[classattr(foobar)]
|
|
|
|
const CLASS_ATTR_WITH_ATTRIBUTE_ARG: i32 = 3;
|
|
|
|
}
|
|
|
|
|
2021-01-09 17:33:28 +00:00
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
fn staticmethod_without_attribute() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
#[staticmethod]
|
|
|
|
fn staticmethod_with_receiver(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: This currently doesn't fail
|
|
|
|
// #[pymethods]
|
|
|
|
// impl MyClass {
|
|
|
|
// #[classmethod]
|
|
|
|
// fn classmethod_with_receiver(&self) {}
|
|
|
|
// }
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
#[getter(x)]
|
|
|
|
fn getter_without_receiver() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
#[setter(x)]
|
|
|
|
fn setter_without_receiver() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
#[new]
|
2021-06-05 15:28:31 +00:00
|
|
|
#[pyo3(text_signature = "()")]
|
2021-01-09 17:33:28 +00:00
|
|
|
fn text_signature_on_new() {}
|
|
|
|
}
|
|
|
|
|
2021-10-23 20:32:39 +00:00
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
#[pyo3(text_signature = "()")]
|
|
|
|
fn __call__(&self) {}
|
|
|
|
}
|
2021-01-09 17:33:28 +00:00
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
#[getter(x)]
|
2021-06-05 15:28:31 +00:00
|
|
|
#[pyo3(text_signature = "()")]
|
2021-01-09 17:33:28 +00:00
|
|
|
fn text_signature_on_getter(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
#[setter(x)]
|
2021-06-05 15:28:31 +00:00
|
|
|
#[pyo3(text_signature = "()")]
|
2021-01-09 17:33:28 +00:00
|
|
|
fn text_signature_on_setter(&self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
#[classattr]
|
2021-06-05 15:28:31 +00:00
|
|
|
#[pyo3(text_signature = "()")]
|
2021-01-09 17:33:28 +00:00
|
|
|
fn text_signature_on_classattr() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
#[classattr]
|
|
|
|
#[staticmethod]
|
|
|
|
fn multiple_method_types() {}
|
|
|
|
}
|
|
|
|
|
2021-03-09 23:37:01 +00:00
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
fn generic_method<T>(value: T) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
fn impl_trait_method_first_arg(impl_trait: impl AsRef<PyAny>) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
fn impl_trait_method_second_arg(&self, impl_trait: impl AsRef<PyAny>) {}
|
|
|
|
}
|
2021-01-09 17:33:28 +00:00
|
|
|
|
2021-05-25 10:31:48 +00:00
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
async fn async_method(&self) {}
|
|
|
|
}
|
|
|
|
|
2021-06-05 15:39:54 +00:00
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
#[pyo3(pass_module)]
|
|
|
|
fn method_cannot_pass_module(&self, m: &PyModule) {}
|
|
|
|
}
|
|
|
|
|
2022-03-24 09:27:37 +00:00
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
|
|
|
fn method_self_by_value(self){}
|
|
|
|
}
|
|
|
|
|
2022-02-08 23:44:23 +00:00
|
|
|
struct TwoNew { }
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl TwoNew {
|
|
|
|
#[new]
|
|
|
|
fn new_1() -> Self { Self { } }
|
|
|
|
|
|
|
|
#[new]
|
|
|
|
fn new_2() -> Self { Self { } }
|
|
|
|
}
|
|
|
|
|
2022-05-24 18:36:24 +00:00
|
|
|
struct DuplicateMethod { }
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl DuplicateMethod {
|
|
|
|
#[pyo3(name = "func")]
|
|
|
|
fn func_a(&self) { }
|
|
|
|
|
|
|
|
#[pyo3(name = "func")]
|
|
|
|
fn func_b(&self) { }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-09 17:33:28 +00:00
|
|
|
fn main() {}
|