You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
amethyst/src/internal/structs.rs

34 lines
673 B
Rust

3 years ago
#[derive(Debug, serde::Serialize)]
pub struct Sorted {
#[allow(dead_code)]
pub repo: Vec<String>,
#[allow(dead_code)]
pub aur: Vec<String>,
#[allow(dead_code)]
3 years ago
pub nf: Vec<String>,
}
impl Sorted {
pub fn new(repo: Vec<String>, aur: Vec<String>, nf: Vec<String>) -> Self {
3 years ago
let a: Sorted = Sorted { repo, aur, nf };
a
}
}
#[derive(Clone, Copy)]
pub struct Options {
pub verbosity: i32,
pub noconfirm: bool,
}
impl Options {
#[allow(dead_code)]
pub fn new(verbosity: i32, noconfirm: bool) -> Self {
let a: Options = Options {
verbosity,
noconfirm,
};
a
}
3 years ago
}