Modules
mod a {
pub mod b {
pub mod c {
pub part M1() {}
}
}
pub part M2() {}
}
a::b::c::M1();
a::M2();
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
mod a {
pub mod b {
pub mod c {
pub part M1() {}
}
}
pub part M2() {}
}
a::b::c::M1();
a::M2();