diff options
| author | mbartlett21 <29034492+mbartlett21@users.noreply.github.com> | 2021-11-05 17:14:57 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-05 17:14:57 +1000 |
| commit | 9ae92ad19acc7f9e3da2d88f22a877ab3eebe13d (patch) | |
| tree | 4f085d3f56864cd1c56c1c9b6fd85c90f4fcda6a | |
| parent | 03d1f24db8a7501a6975ce4387ad9fa5063a4894 (diff) | |
| download | rust-9ae92ad19acc7f9e3da2d88f22a877ab3eebe13d.tar.gz rust-9ae92ad19acc7f9e3da2d88f22a877ab3eebe13d.zip | |
Re-export `core::slice::EscapeAscii`
| -rw-r--r-- | library/alloc/src/slice.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/alloc/src/slice.rs b/library/alloc/src/slice.rs index 37bc07688d5..ae730be0d25 100644 --- a/library/alloc/src/slice.rs +++ b/library/alloc/src/slice.rs @@ -108,6 +108,8 @@ pub use core::slice::ArrayChunks; pub use core::slice::ArrayChunksMut; #[unstable(feature = "array_windows", issue = "75027")] pub use core::slice::ArrayWindows; +#[unstable(feature = "inherent_ascii_escape", issue = "77174")] +pub use core::slice::EscapeAscii; #[stable(feature = "slice_get_slice", since = "1.28.0")] pub use core::slice::SliceIndex; #[stable(feature = "from_ref", since = "1.28.0")] |
