1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#![deny(
missing_docs,
trivial_casts,
trivial_numeric_casts,
unused_extern_crates,
unused_import_braces,
unused_qualifications,
unused_results
)]
#[derive(thiserror::Error, Debug)]
pub enum PkgError {
#[cfg(feature = "debian")]
#[error("Debpkg Error")]
DebPkgError(#[from] debpkg::Error),
#[cfg(feature = "rpm")]
#[error("fez Error")]
RpmError(#[from] ::fez::RPMError),
#[cfg(feature = "http")]
#[error("HTTP Error")]
HTTPError(#[from] reqwest::Error),
}
pub trait RemotePackage {
fn package_name(&self) -> Result<&str, PkgError>;
}
#[cfg(feature = "debian")]
pub mod debian;
#[cfg(feature = "rpm")]
pub mod rpm;