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

#include <jsonrpc_traits.hpp>

Concept definition

template<typename T>
concept jsonrpc::endpoint::FromJson = requires(nlohmann::json j) {
{ j.get<T>() } -> std::same_as<T>;
}

Detailed Description

Definition at line 11 of file jsonrpc_traits.hpp.