(&mut self, value: Option<impl AsRef<T::Native>>)
| 424 | /// Append an `Option` value into the builder |
| 425 | #[inline] |
| 426 | pub fn append_option(&mut self, value: Option<impl AsRef<T::Native>>) { |
| 427 | match value { |
| 428 | None => self.append_null(), |
| 429 | Some(v) => self.append_value(v), |
| 430 | }; |
| 431 | } |
| 432 | |
| 433 | /// Append the same value `n` times into the builder |
| 434 | /// |
no test coverage detected