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 cfbc7cb commit 31bbcf0Copy full SHA for 31bbcf0
src/libcore/core.rs
@@ -8,6 +8,8 @@ import Option = option::Option;
8
#[cfg(stage0)]
9
import option = option::Option;
10
11
+import result::{Result, Ok, Err};
12
+
13
import Path = path2::Path;
14
import GenericPath = path2::GenericPath;
15
import WindowsPath = path2::WindowsPath;
@@ -24,6 +26,7 @@ import to_str::ToStr;
24
26
25
27
export Path, WindowsPath, PosixPath, GenericPath;
28
export Option, Some, None, unreachable;
29
+export Result, Ok, Error;
30
export extensions;
31
// The following exports are the extension impls for numeric types
32
export Num, Times, TimesIx;
0 commit comments