Append a value to the builder.
(&mut self, value: &str)
| 176 | impl TraceIdBuilder { |
| 177 | /// Append a value to the builder. |
| 178 | fn append_value(&mut self, value: &str) { |
| 179 | match self { |
| 180 | TraceIdBuilder::Utf8(builder) => builder.append_value(value), |
| 181 | TraceIdBuilder::Utf8View(builder) => builder.append_value(value), |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | /// Finish building and return the ArrayRef. |
| 186 | fn finish(self) -> ArrayRef { |
no outgoing calls