Searched defs:ProtobufValue (Results 1 – 13 of 13) sorted by relevance
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf/src/reflect/ |
D | types.rs | 31 type ProtobufValue: Default; typedef 45 fn read(is: &mut CodedInputStream) -> Result<Self::ProtobufValue>; in read() 48 fn get_from_unknown(_unknown: UnknownValueRef) -> Option<Self::ProtobufValue>; in get_from_unknown() 84 value: &Self::ProtobufValue, in write_with_cached_size() 160 type ProtobufValue = f32; typedef 193 type ProtobufValue = f64; typedef 226 type ProtobufValue = i32; typedef 259 type ProtobufValue = i64; typedef 288 type ProtobufValue = u32; typedef 317 type ProtobufValue = u64; typedef [all …]
|
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/protobuf/src/reflect/ |
D | optional.rs | 7 fn to_option(&self) -> Option<&dyn ProtobufValue>; in to_option() 9 fn set_value(&mut self, value: &dyn ProtobufValue); in set_value() 13 fn to_option(&self) -> Option<&dyn ProtobufValue> { in to_option() 17 fn set_value(&mut self, value: &dyn ProtobufValue) { in set_value() 26 fn to_option(&self) -> Option<&dyn ProtobufValue> { in to_option() 30 fn set_value(&mut self, value: &dyn ProtobufValue) { in set_value() 39 fn to_option(&self) -> Option<&dyn ProtobufValue> { in to_option() 43 fn set_value(&mut self, value: &dyn ProtobufValue) { in set_value()
|
D | map.rs | 29 fn next(&mut self) -> Option<(&'a dyn ProtobufValue, &'a dyn ProtobufValue)>; in next() 39 fn next(&mut self) -> Option<(&'a dyn ProtobufValue, &'a dyn ProtobufValue)> { in next() 54 fn next(&mut self) -> Option<(&'a dyn ProtobufValue, &'a dyn ProtobufValue)> { in next()
|
D | repeated.rs | 10 fn get(&self, index: usize) -> &dyn ProtobufValue; in get() 24 fn get(&self, index: usize) -> &dyn ProtobufValue { in get() 41 fn get(&self, index: usize) -> &dyn ProtobufValue { in get() 57 fn get(&self, index: usize) -> &dyn ProtobufValue { in get() 63 fn next(&mut self) -> Option<&'a dyn ProtobufValue>; in next() 73 fn next(&mut self) -> Option<&'a dyn ProtobufValue> { in next()
|
D | value.rs | 12 pub trait ProtobufValue: Any + 'static { trait
|
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf/src/reflect/acc/v2/singular/ |
D | mod.rs | 93 V: ProtobufValue, in new_get_mut() 115 V: ProtobufValue, in new_get_option_mut_option() 221 V: ProtobufValue, in new_has_get_set_deref() 305 V: ProtobufValue, in make_option_accessor() 323 V: ProtobufValue, in make_simpler_field_accessor()
|
D | oneof.rs | 76 F: ProtobufValue, in make_oneof_deref_has_get_set_simpler_accessor()
|
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf/src/reflect/value/ |
D | mod.rs | 30 pub trait ProtobufValue: Clone + Default + fmt::Debug + Send + Sync + Sized + 'static { interface
|
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf/src/reflect/acc/v2/ |
D | map.rs | 79 V: ProtobufValue, in make_map_simpler_accessor()
|
D | repeated.rs | 100 V: ProtobufValue, in make_vec_simpler_accessor()
|
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf/src/coded_input_stream/ |
D | mod.rs | 382 target: &mut Vec<T::ProtobufValue>, in read_repeated_packed_fixed_into() 406 target: &mut Vec<T::ProtobufValue>, in read_repeated_packed_into()
|
/aosp_15_r20/external/rust/android-crates-io/extra_versions/crates/protobuf/src/reflect/acc/ |
D | v1.rs | 731 fn get_field<'a>(&self, m: &'a M) -> &'a dyn ProtobufValue { in get_field() 735 fn mut_field<'a>(&self, m: &'a mut M) -> &'a mut dyn ProtobufValue { in mut_field()
|
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf/src/reflect/repeated/ |
D | mod.rs | 70 fn data_impl<V: ProtobufValue, X: ProtobufValue>(v: &Vec<V>) -> &[X] { in data_impl()
|