86 lines
1.3 KiB
Rust
86 lines
1.3 KiB
Rust
|
use pyo3::prelude::*;
|
||
|
|
||
|
#[pyclass]
|
||
|
struct MyClass {}
|
||
|
|
||
|
#[pymethods]
|
||
|
impl MyClass {
|
||
|
#[classattr]
|
||
|
fn class_attr_with_args(foo: i32) {}
|
||
|
}
|
||
|
|
||
|
#[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]
|
||
|
#[text_signature = "()"]
|
||
|
fn text_signature_on_new() {}
|
||
|
}
|
||
|
|
||
|
#[pymethods]
|
||
|
impl MyClass {
|
||
|
#[call]
|
||
|
#[text_signature = "()"]
|
||
|
fn text_signature_on_call(&self) {}
|
||
|
}
|
||
|
|
||
|
#[pymethods]
|
||
|
impl MyClass {
|
||
|
#[getter(x)]
|
||
|
#[text_signature = "()"]
|
||
|
fn text_signature_on_getter(&self) {}
|
||
|
}
|
||
|
|
||
|
#[pymethods]
|
||
|
impl MyClass {
|
||
|
#[setter(x)]
|
||
|
#[text_signature = "()"]
|
||
|
fn text_signature_on_setter(&self) {}
|
||
|
}
|
||
|
|
||
|
#[pymethods]
|
||
|
impl MyClass {
|
||
|
#[classattr]
|
||
|
#[text_signature = "()"]
|
||
|
fn text_signature_on_classattr() {}
|
||
|
}
|
||
|
|
||
|
#[pymethods]
|
||
|
impl MyClass {
|
||
|
#[classattr]
|
||
|
#[staticmethod]
|
||
|
fn multiple_method_types() {}
|
||
|
}
|
||
|
|
||
|
|
||
|
fn main() {}
|