Add RepeatedIter to public protobuf items

PiperOrigin-RevId: 604554509
diff --git a/rust/shared.rs b/rust/shared.rs
index b26ca48..5252b1b 100644
--- a/rust/shared.rs
+++ b/rust/shared.rs
@@ -29,7 +29,9 @@
     pub use crate::proxied::{
         Mut, MutProxy, Proxied, ProxiedWithPresence, SettableValue, View, ViewProxy,
     };
-    pub use crate::repeated::{ProxiedInRepeated, Repeated, RepeatedMut, RepeatedView};
+    pub use crate::repeated::{
+        ProxiedInRepeated, Repeated, RepeatedIter, RepeatedMut, RepeatedView,
+    };
     pub use crate::string::{BytesMut, ProtoStr, ProtoStrMut};
     pub use crate::ParseError;
 }