(&mut self, not_null: bool)
| 140 | /// Appends a boolean value into the builder. |
| 141 | #[inline] |
| 142 | pub fn append(&mut self, not_null: bool) { |
| 143 | if not_null { |
| 144 | self.append_non_null() |
| 145 | } else { |
| 146 | self.append_null() |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | /// Sets a bit in the builder at `index` |
| 151 | #[inline] |
no test coverage detected