Module fmt

Module fmt 

Source
Expand description

Stack-allocated formatting buffer for no_std environments.

FmtBuf implements core::fmt::Write so you can use write! macros without heap allocation, then pass the result to C APIs as a null-terminated byte slice via FmtBuf::as_cstr.

Structsยง

FmtBuf
Zero-allocation stack buffer that implements core::fmt::Write.