Home
last modified time | relevance | path

Searched refs:expose_oneof (Results 1 – 3 of 3) sorted by relevance

/external/rust/crates/protobuf-codegen/src/
Dcustomize.rs10 pub expose_oneof: Option<bool>, field
53 if let Some(v) = that.expose_oneof { in update_with()
54 self.expose_oneof = Some(v); in update_with()
110 r.expose_oneof = Some(parse_bool(v)?); in parse_from_parameter()
140 let expose_oneof = rustproto::exts::expose_oneof.get(source); in customize_from_rustproto_for_message() localVariable
151 expose_oneof, in customize_from_rustproto_for_message()
166 let expose_oneof = None; in customize_from_rustproto_for_field() localVariable
178 expose_oneof, in customize_from_rustproto_for_field()
193 let expose_oneof = rustproto::exts::expose_oneof_all.get(source); in customize_from_rustproto_for_file() localVariable
204 expose_oneof, in customize_from_rustproto_for_file()
Dmessage.rs84 fn expose_oneof(&self) -> bool { in expose_oneof() method
85 self.customize.expose_oneof.unwrap_or(true) in expose_oneof()
542 let vis = match self.expose_oneof() { in write_struct()
/external/rust/crates/protobuf/src/
Drustproto.rs41 …pub const expose_oneof: crate::ext::ExtFieldOptional<crate::descriptor::MessageOptions, crate::typ… constant