use std::rc::Rc; #[derive(Debug)] struct GroundStation {} fn main() { let base: Rc = Rc::new(GroundStation {}); println!("{:?}", base); }