Set the nullable flag
(mut self, nullable: bool)
| 439 | |
| 440 | /// Set the nullable flag |
| 441 | pub fn with_nullable(mut self, nullable: bool) -> Self { |
| 442 | self.nullable = nullable; |
| 443 | self |
| 444 | } |
| 445 | |
| 446 | /// sets the field name for the resulting array |
| 447 | pub fn with_field_name(mut self, field_name: Option<String>) -> Self { |
no outgoing calls
no test coverage detected