(path: PathBuf)
| 22 | |
| 23 | #[staticmethod] |
| 24 | fn from_file(path: PathBuf) -> Result<Self, crate::srcinfo::error::Error> { |
| 25 | let inner = alpm_srcinfo::SourceInfoV1::from_file(&path)?; |
| 26 | Ok(inner.into()) |
| 27 | } |
| 28 | |
| 29 | #[staticmethod] |
| 30 | fn from_pkgbuild(path: PathBuf) -> Result<Self, crate::srcinfo::error::Error> { |
no outgoing calls