#[derive(Debug, Clone, Copy, PartialEq)]
pub struct Lander {
pub name: &'static str,
pub dry_mass_kg: f64,
pub crewed: bool,
}
pub fn io_volcano_observer() -> Lander {
Lander {
name: "Io Volcano Observer",
dry_mass_kg: 800.0,
crewed: false,
}
}
pub fn io_surface_probe() -> Lander {
Lander {
name: "Io Surface Probe",
dry_mass_kg: 400.0,
crewed: false,
}
}