87struct fmt::formatter<USERVER_NAMESPACE::formats::json::
Value> : fmt::formatter<std::string_view> {
88 constexpr static auto parse(format_parse_context& ctx) ->
decltype(ctx.begin()) {
return ctx.begin(); }
90 template <
typename FormatContext>
91 auto format(
const USERVER_NAMESPACE::formats::json::
Value& value, FormatContext& ctx)
93 const USERVER_NAMESPACE::formats::json::impl::StringBuffer buffer(value);
94 return fmt::format_to(ctx.out(),
"{}", buffer.GetStringView());