//! The [`FormatValue`] marker trait.
use ;
/// Marker trait for values that can be formatted at runtime.
///
/// Blanket-implemented for all `T: Display + Debug`, which covers the vast
/// majority of Rust types (`i32`, `f64`, `String`, `&str`, `bool`, `char`,
/// custom types with `#[derive(Debug)]` and a `Display` impl, etc.).