1use core::fmt::Write;
23pub(crate) fn append(result: &mut alloc::string::String, args: core::fmt::Arguments<'_>) {
4// write! returns fmt::Result; truncation is acceptable (the C++ version
5 // also truncated to a 256-byte buffer).
6let _ = result.write_fmt(args);
7}