6#include <boost/uuid/uuid.hpp> 
    9#include <userver/utils/fmt_compat.hpp> 
   11USERVER_NAMESPACE_BEGIN
 
   34struct fmt::formatter<boost::uuids::uuid> {
 
   35  constexpr static auto parse(format_parse_context& ctx)
 
   36      -> 
decltype(ctx.begin()) {
 
   40  template <
typename FormatContext>
 
   41  auto format(
const boost::uuids::uuid& uuid,
 
   43    return fmt::format_to(ctx.out(), 
"{}",
 
   44                          USERVER_NAMESPACE::utils::ToString(uuid));