(&mut self, value: Option<impl AsRef<T::Native>>)
| 133 | /// See [`Self::append_value`] for more panic information. |
| 134 | #[inline] |
| 135 | pub fn append_option(&mut self, value: Option<impl AsRef<T::Native>>) { |
| 136 | match value { |
| 137 | None => self.append_null(), |
| 138 | Some(v) => self.append_value(v), |
| 139 | }; |
| 140 | } |
| 141 | |
| 142 | /// Append a null value into the builder. |
| 143 | #[inline] |
no test coverage detected