#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Lander {
pub name: &'static str,
pub dry_mass_kg: f64,
pub crewed: bool,
}
pub fn enceladus_life_finder() -> Lander {
Lander {
name: "Enceladus Life Finder",
dry_mass_kg: 900.0,
crewed: false,
}
}
pub fn plume_sampler_concept() -> Lander {
Lander {
name: "Plume Sampler Concept",
dry_mass_kg: 600.0,
crewed: false,
}
}