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.
mod
1 parent af0fa64 commit e6e9e32Copy full SHA for e6e9e32
src/utils/mod.rs
@@ -1,8 +1,4 @@
1
//! Utility functions for Rustup
2
-pub(crate) mod notifications;
3
-pub(crate) mod notify;
4
-pub mod raw;
5
-pub(crate) mod units;
6
7
use std::env;
8
use std::fs::{self, File};
@@ -25,6 +21,11 @@ pub(crate) use crate::utils::raw::find_cmd;
25
21
pub use crate::utils::raw::{is_file, path_exists};
26
22
pub(crate) use crate::utils::{notifications::Notification, raw::is_directory};
27
23
24
+pub(crate) mod notifications;
+pub(crate) mod notify;
+pub mod raw;
+pub(crate) mod units;
28
+
29
#[must_use]
30
#[derive(Debug, PartialEq, Eq)]
31
pub struct ExitCode(pub i32);
0 commit comments