use pyo3::prelude::*;
#[pyclass(set_all)]
struct Foo;
struct Foo2{
#[pyo3(set)]
field: u8,
}
#[pyclass(get_all)]
struct Foo3;
struct Foo4{
#[pyo3(get)]
fn main() {}