Get the value to represent null in output
(&self)
| 569 | |
| 570 | /// Get the value to represent null in output |
| 571 | pub fn null(&self) -> &str { |
| 572 | self.null_value.as_deref().unwrap_or(DEFAULT_NULL_VALUE) |
| 573 | } |
| 574 | |
| 575 | /// Set whether to ignore leading whitespace in string values |
| 576 | /// For example, a string value such as " foo" will be written as "foo" |
no outgoing calls