(v: alpm_srcinfo::SourceInfo)
| 12 | |
| 13 | impl From<alpm_srcinfo::SourceInfo> for SourceInfo { |
| 14 | fn from(v: alpm_srcinfo::SourceInfo) -> Self { |
| 15 | match v { |
| 16 | alpm_srcinfo::SourceInfo::V1(v) => SourceInfo::V1(v.into()), |
| 17 | } |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | #[pyfunction] |
nothing calls this directly
no outgoing calls
no test coverage detected