Rollup merge of #59908 - lzutao:str_escape, r=SimonSapin

Re-export core::str::{EscapeDebug, EscapeDefault, EscapeUnicode} in std

cc #59893
This commit is contained in:
Mazdak Farrokhzad 2019-04-18 00:23:36 +02:00 committed by GitHub
commit a20438773b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,6 +68,8 @@ pub use core::str::pattern;
pub use core::str::EncodeUtf16;
#[stable(feature = "split_ascii_whitespace", since = "1.34.0")]
pub use core::str::SplitAsciiWhitespace;
#[stable(feature = "str_escape", since = "1.34.0")]
pub use core::str::{EscapeDebug, EscapeDefault, EscapeUnicode};
#[unstable(feature = "slice_concat_ext",
reason = "trait should not have to exist",