(&self)
| 294 | |
| 295 | #[getter] |
| 296 | fn conflicts(&self) -> Option<Override> { |
| 297 | into_pyoverride!(self.0.conflicts.clone(), |
| 298 | alpm_srcinfo_package::Override::Yes { value } => { |
| 299 | let relations: Vec<PackageRelation> = vec_convert!(value); |
| 300 | Overridable::RelationsOrSonames(vec_convert!(relations)) |
| 301 | } |
| 302 | ) |
| 303 | } |
| 304 | |
| 305 | #[setter] |
| 306 | fn set_conflicts(&mut self, conflicts: Option<Override>) -> PyResult<()> { |
nothing calls this directly
no outgoing calls
no test coverage detected