We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 901071f commit 6feca85Copy full SHA for 6feca85
src/mod/use.md
@@ -3,7 +3,7 @@
3
The `use` declaration can be used to bind a full path to a new name, for easier
4
access. It is often used like this:
5
6
-```rust,editable
+```rust,editable,ignore
7
// extern crate deeply; // normally, this would exist and not be commented out!
8
9
use deeply::nested::{
@@ -19,7 +19,7 @@ fn main() {
19
20
You can use the `as` keyword to bind imports to a different name:
21
22
23
// Bind the `deeply::nested::function` path to `other_function`.
24
use deeply::nested::function as other_function;
25
0 commit comments