Home
last modified time | relevance | path

Searched defs:ReflectRepeatedMut (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/protobuf/src/reflect/repeated/
Dmod.rs41 fn reflect_extend(&mut self, values: ReflectRepeatedMut); in reflect_extend()
104 fn reflect_extend(&mut self, values: ReflectRepeatedMut) { in reflect_extend()
194 pub struct ReflectRepeatedMut<'a> { struct
195 pub(crate) repeated: &'a mut dyn ReflectRepeated,
362 impl<'a> ReflectRepeatedMut<'a> { implementation
411 pub(crate) fn extend(&mut self, values: ReflectRepeatedMut) { in extend()
466 impl<'a> IntoIterator for &'a ReflectRepeatedMut<'a> { implementation
481 impl<'a> fmt::Debug for ReflectRepeatedMut<'a> { implementation
487 impl<'a> PartialEq for ReflectRepeatedMut<'a> { implementation
493 impl<'a> PartialEq<ReflectRepeatedRef<'a>> for ReflectRepeatedMut<'a> { implementation
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf/src/reflect/
Dprotobuf_type_box.rs115 repeated: &mut ReflectRepeatedMut, in read_repeated_into()
122 fn extend<V: ProtobufValue>(repeated: &mut ReflectRepeatedMut, mut v: Vec<V>) { in read_repeated_into()
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf/src/reflect/dynamic/
Drepeated.rs169 fn reflect_extend(&mut self, values: ReflectRepeatedMut) { in reflect_extend()