On Tue, Aug 12, 2025 at 10:44:22AM +0200, Andreas Hindborg wrote: > Add `NullTerminatedFormatter`, a formatter that writes a null terminated > string to an array or slice buffer. Because this type needs to manage the > trailing null marker, the existing formatters cannot be used to implement > this type. > > Signed-off-by: Andreas Hindborg <a.hindborg@xxxxxxxxxx> Reviewed-by: Alice Ryhl <aliceryhl@xxxxxxxxxx> > + #[expect(dead_code)] > + pub(crate) fn from_array<const N: usize>( Don't you delete this function in the next patch? Alice