Marks this record element as null.
(self)
| 1588 | { |
| 1589 | /// Marks this record element as null. |
| 1590 | pub fn write_null(self) -> Nestable { |
| 1591 | // In ranges these "null" values represent infinite bounds, which are |
| 1592 | // not represented as values, but rather the absence of a value. |
| 1593 | Nestable::Yes |
| 1594 | } |
| 1595 | |
| 1596 | /// Returns a [`FormatBuffer`] into which a non-null element can be |
| 1597 | /// written. |