Using a struct from another module in a new module
问题 The following code doesn't compile, because it says that requests is not defined when I try to use it in the operations module. I think this maybe has something to do with importing modules maybe, but I'm really new to rust and don't understand. I thought I could just do module::struct and as long as the struct was public I would be able to access it. Can someone explain why this doesn't work, and how to make this work? pub mod vehicles { pub struct Vehicle { _vehicle_id: u64, _capacity: u32,