dynfmt 0.1.2

A crate for formatting strings dynamically.
Documentation

dynfmt - Dynamic Formatting in Rust

dynfmt provides several implementations for formats that implement a subset of the std::fmt facilities. Parsing of the format string and arguments checks are performed at runtime. There is also the option to implement new formats.

The public API is exposed via the Format trait, which contains formatting helper functions and lower-level utilities to interface with format strings. See the Features section for a list of provided implementations.

Usage

use dynfmt::{Format, NoopFormat};

let formatted = NoopFormat.format("hello, world", &["unused"]);
assert_eq!("hello, world", formatted.expect("formatting failed"));

See the Documentation for more information.