Function fmty::quote_double

source ·
pub fn quote_double<T>(value: T) -> Infix<T, char>
Expand description

Places a value between ".

Examples

let value = fmty::quote_double(123);

assert_eq!(value.to_string(), "\"123\"");