Set the value to represent null in output
(mut self, null_value: String)
| 563 | |
| 564 | /// Set the value to represent null in output |
| 565 | pub fn with_null(mut self, null_value: String) -> Self { |
| 566 | self.null_value = Some(null_value); |
| 567 | self |
| 568 | } |
| 569 | |
| 570 | /// Get the value to represent null in output |
| 571 | pub fn null(&self) -> &str { |
no outgoing calls