(&mut self, v: Option<bool>)
| 110 | /// Appends an `Option<T>` into the builder |
| 111 | #[inline] |
| 112 | pub fn append_option(&mut self, v: Option<bool>) { |
| 113 | match v { |
| 114 | None => self.append_null(), |
| 115 | Some(v) => self.append_value(v), |
| 116 | }; |
| 117 | } |
| 118 | |
| 119 | /// Appends a slice of type `T` into the builder |
| 120 | #[inline] |