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