(field: &FieldDescriptorProto)
| 987 | } |
| 988 | |
| 989 | fn field_label(field: &FieldDescriptorProto) -> FieldLabel { |
| 990 | FieldLabel::try_from(field.label.unwrap_or_default()).unwrap_or(FieldLabel::Optional) |
| 991 | } |
| 992 | |
| 993 | fn field_type(field: &FieldDescriptorProto) -> FieldType { |
| 994 | FieldType::try_from(field.r#type.unwrap_or_default()).unwrap_or(FieldType::Message) |