Remove RepeatedIterMut Mutator access in repeated and map is a 1.0 feature. PiperOrigin-RevId: 604554490
diff --git a/rust/repeated.rs b/rust/repeated.rs index 10ab50a..a81955b 100644 --- a/rust/repeated.rs +++ b/rust/repeated.rs
@@ -270,21 +270,6 @@ } } -/// An iterator over the mutators inside of a [`Mut<Repeated<T>>`](RepeatedMut). -pub struct RepeatedIterMut<'msg, T: ?Sized> { - mutator: RepeatedMut<'msg, T>, - current_index: usize, -} - -impl<'msg, T: ?Sized> Debug for RepeatedIterMut<'msg, T> { - fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { - f.debug_struct("RepeatedIterMut") - .field("mutator", &self.mutator) - .field("current_index", &self.current_index) - .finish() - } -} - /// A `repeated` field of `T`, used as the owned target for `Proxied`. /// /// Users will generally write [`View<Repeated<T>>`](RepeatedView) or