use, super, self
Un módulo puede incluir símbolos de otro módulo en el ámbito con use
. Normalmente, se ve algo como esto en la parte superior de cada módulo:
use std::collections::HashSet; use std::process::abort;
Rutas
Las rutas se resuelven de la siguiente manera:
-
Como ruta relativa:
foo
oself::foo
hacen referencia afoo
en el módulo.super::foo
hace referencia afoo
en el módulo superior.
-
Como ruta absoluta:
crate::foo
hace referencia afoo
en la raíz del crate.bar::foo
hace referencia afoo
en el cratebar
.
-
It is common to “re-export” symbols at a shorter path. For example, the top-level
lib.rs
in a crate might havemod storage; pub use storage::disk::DiskStorage; pub use storage::network::NetworkStorage;
making
DiskStorage
andNetworkStorage
available to other crates with a convenient, short path. -
For the most part, only items that appear in a module need to be
use
’d. However, a trait must be in scope to call any methods on that trait, even if a type implementing that trait is already in scope. For example, to use theread_to_string
method on a type implementing theRead
trait, you need touse std::io::Read
. -
The
use
statement can have a wildcard:use std::io::*
. This is discouraged because it is not clear which items are imported, and those might change over time.