[][src]Crate dyn_fmt

Static format macroDynamic analog
format!format
format_args!Arguments::new
write!dyn_write!

Crate features

  • "std" Enabled by default. Disable to make the library #![no_std].

Macros

dyn_write

Writes formatted data into a buffer. A runtime analog of write! macro. In contrast with the macro format string have not be a string literal.

Structs

Arguments

This structure represents a format string combined with its arguments. In contrast with fmt::Arguments this structure can be easily and safely created at runtime.

Traits

AsStrFormatExt

Extends strings with the format method, which is a runtime analog of the format! macro. Unavailable in no_std environment.