(&mut self, value: Option<V::Native>)
| 354 | /// Panics if the resulting length of the dictionary values array would exceed `T::Native::MAX` |
| 355 | #[inline] |
| 356 | pub fn append_option(&mut self, value: Option<V::Native>) { |
| 357 | match value { |
| 358 | None => self.append_null(), |
| 359 | Some(v) => self.append_value(v), |
| 360 | }; |
| 361 | } |
| 362 | |
| 363 | /// Append an `Option` value into the builder repeatedly `count` times. |
| 364 | /// This is the same as `append_option` but allows to append the same value multiple times without doing multiple lookups. |
no test coverage detected