JSON-RPC 2.0
JSON-RPC 2.0 Modern C++ Library
Loading...
Searching...
No Matches
jsonrpc::endpoint::ToJson Concept Reference

#include <jsonrpc_traits.hpp>

Concept definition

template<typename T>
concept jsonrpc::endpoint::ToJson = std::is_same_v<T, std::monostate> || requires(T value) {
{ nlohmann::json(value) } -> std::same_as<nlohmann::json>;
}

Detailed Description

Definition at line 16 of file jsonrpc_traits.hpp.