diff options
| author | Michael Goulet <michael@errs.io> | 2022-07-29 00:17:05 +0000 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2022-07-29 00:35:38 +0000 |
| commit | 8abcd4d23538aa1e4c1164bca2c96ce0d7eb57ed (patch) | |
| tree | 651493b274ca5f2aecb50ac94132ea4026ed7e77 | |
| parent | 9067d5277d10f0f32a49ec9c125a33828e26a32b (diff) | |
| download | rust-8abcd4d23538aa1e4c1164bca2c96ce0d7eb57ed.tar.gz rust-8abcd4d23538aa1e4c1164bca2c96ce0d7eb57ed.zip | |
EscapeAscii is not an ExactSizeIterator
| -rw-r--r-- | library/core/src/slice/ascii.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/library/core/src/slice/ascii.rs b/library/core/src/slice/ascii.rs index 63715a6b86b..5e5399acc1b 100644 --- a/library/core/src/slice/ascii.rs +++ b/library/core/src/slice/ascii.rs @@ -215,8 +215,6 @@ impl<'a> iter::DoubleEndedIterator for EscapeAscii<'a> { } } #[stable(feature = "inherent_ascii_escape", since = "1.60.0")] -impl<'a> iter::ExactSizeIterator for EscapeAscii<'a> {} -#[stable(feature = "inherent_ascii_escape", since = "1.60.0")] impl<'a> iter::FusedIterator for EscapeAscii<'a> {} #[stable(feature = "inherent_ascii_escape", since = "1.60.0")] impl<'a> fmt::Display for EscapeAscii<'a> { |
