Home
last modified time | relevance | path

Searched refs:tokio_bytes_for_string (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/protobuf-codegen/src/customize/
Drustproto_proto.rs14 let tokio_bytes_for_string = rustproto::exts::tokio_bytes_for_string.get(source); in customize_from_rustproto_for_message() localVariable
23 tokio_bytes_for_string, in customize_from_rustproto_for_message()
39 let tokio_bytes_for_string = rustproto::exts::tokio_bytes_for_string_field.get(source); in customize_from_rustproto_for_field() localVariable
48 tokio_bytes_for_string, in customize_from_rustproto_for_field()
60 let tokio_bytes_for_string = rustproto::exts::tokio_bytes_for_string_all.get(source); in customize_from_rustproto_for_file() localVariable
69 tokio_bytes_for_string, in customize_from_rustproto_for_file()
Dmod.rs100 pub(crate) tokio_bytes_for_string: Option<bool>, field
146 pub fn tokio_bytes_for_string(mut self, tokio_bytes_for_string: bool) -> Self { in tokio_bytes_for_string() method
147 self.tokio_bytes_for_string = Some(tokio_bytes_for_string); in tokio_bytes_for_string()
188 if let Some(v) = that.tokio_bytes_for_string { in update_with()
189 self.tokio_bytes_for_string = Some(v); in update_with()
234 r.tokio_bytes_for_string = Some(parse_bool(v)?); in parse_from_parameter()
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf-parse/src/proto/
Drustproto.proto35 optional bool tokio_bytes_for_string = 17012; field
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf/src/
Drustproto.rs43 …pub const tokio_bytes_for_string: crate::ext::ExtFieldOptional<crate::descriptor::MessageOptions, … constant
/aosp_15_r20/external/rust/android-crates-io/crates/protobuf-codegen/src/gen/field/
Delem.rs300 let tokio_for_string = customize.tokio_bytes_for_string.unwrap_or(false); in field_elem()