| 18 | /// [SRCINFO]: https://alpm.archlinux.page/specifications/SRCINFO.5.html |
| 19 | #[derive(Clone, Debug, Deserialize, Serialize)] |
| 20 | pub enum SourceInfo { |
| 21 | /// The [SRCINFO] file format. |
| 22 | /// |
| 23 | /// [SRCINFO]: https://alpm.archlinux.page/specifications/SRCINFO.5.html |
| 24 | V1(SourceInfoV1), |
| 25 | } |
| 26 | |
| 27 | impl MetadataFile<SourceInfoSchema> for SourceInfo { |
| 28 | type Err = Error; |
no outgoing calls
no test coverage detected