Function fmty::quote_curly_double

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

Places a value between and .

Examples

let value = fmty::quote_curly_double("Stunning!");

assert_eq!(value.to_string(), "“Stunning!”");