30struct fmt::formatter<USERVER_NAMESPACE::
utils::SmallString<N>> :
public fmt::formatter<std::string_view> {
31 template <
typename FormatContext>
32 auto format(
const USERVER_NAMESPACE::
utils::SmallString<N>& value, FormatContext& ctx)
const
33 ->
decltype(ctx.out()) {
34 return formatter<std::string_view>::format(std::string_view{value}, ctx);