Lines Matching defs:Customize
9 pub struct Customize { struct
11 pub expose_oneof: Option<bool>,
13 pub expose_fields: Option<bool>,
15 pub generate_accessors: Option<bool>,
39 /// Make sure `Customize` is always used with `..Default::default()` argument
53 impl Customize { argument
55 pub fn update_with(&mut self, that: &Customize) { in update_with()
92 pub fn set_defaults_from(&mut self, other: &Customize) { in set_defaults_from()
99 pub fn parse_from_parameter(parameter: &str) -> CustomizeParseParameterResult<Customize> { in parse_from_parameter()
147 pub fn customize_from_rustproto_for_message(source: &MessageOptions) -> Customize { in customize_from_rustproto_for_message()
175 pub fn customize_from_rustproto_for_enum(source: &EnumOptions) -> Customize { in customize_from_rustproto_for_enum()
182 pub fn customize_from_rustproto_for_field(source: &FieldOptions) -> Customize { in customize_from_rustproto_for_field()
211 pub fn customize_from_rustproto_for_file(source: &FileOptions) -> Customize { in customize_from_rustproto_for_file()