May 2019
Intermediate to advanced
698 pages
17h 21m
English
We can do nested imports of items from modules. This helps in reducing the taken up by imports. Consider the following code:
// nested_imports.rsuse std::sync::{Mutex, Arc, mpsc::channel};fn main() { let (tx, rx) = channel();}
Read now
Unlock full access