(mut self, setter: S)
| 88 | } |
| 89 | |
| 90 | pub fn with_set<S, X>(mut self, setter: S) -> Self |
| 91 | where |
| 92 | S: IntoPySetterFunc<X>, |
| 93 | { |
| 94 | self.setter = Some(setter.into_setter()); |
| 95 | self |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | #[pyclass(flags(DISALLOW_INSTANTIATION), with(GetDescriptor, Representable))] |
no test coverage detected