(&mut self, value: impl AsRef<T::Native>)
| 325 | /// - String length exceeds `u32::MAX` |
| 326 | #[inline] |
| 327 | pub fn append_value(&mut self, value: impl AsRef<T::Native>) { |
| 328 | self.try_append_value(value).unwrap() |
| 329 | } |
| 330 | |
| 331 | /// Appends a value into the builder |
| 332 | /// |