21 template <
typename FormatContext>
22 auto format(_TYPE_
const& p, FormatContext& ctx)
24 auto const [success, value, message] = p.printable();
27 return fmt::formatter<QString>::format(value, ctx);
29 return fmt::format_to(ctx.out(),
"error: '{}'", message);