fn get_city()

in pyo3_special_method_derive_example/src/lib.rs [176:180]


    fn get_city(&self) -> &PyCity {
        match self {
            PyAddress::House { city, .. } => city,
        }
    }