We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f66c823 commit 616a43cCopy full SHA for 616a43c
1 file changed
library/core/src/char/mod.rs
@@ -24,6 +24,8 @@ mod convert;
24
mod decode;
25
mod methods;
26
27
+use safety::requires;
28
+
29
// stable re-exports
30
#[rustfmt::skip]
31
#[stable(feature = "try_from", since = "1.34.0")]
@@ -40,8 +42,7 @@ pub use self::methods::encode_utf16_raw; // perma-unstable
40
42
#[unstable(feature = "char_internals", reason = "exposed only for libstd", issue = "none")]
41
43
pub use self::methods::{encode_utf8_raw, encode_utf8_raw_unchecked}; // perma-unstable
44
-use safety::requires;
-
45
+#[rustfmt::skip]
46
use crate::ascii;
47
pub(crate) use self::methods::EscapeDebugExtArgs;
48
use crate::error::Error;
0 commit comments