| 1551 | */ |
| 1552 | template<Concepts::Serializable T> |
| 1553 | [[nodiscard]] inline QJsonObject toJson(const T& obj) noexcept |
| 1554 | { |
| 1555 | return serialize(obj); |
| 1556 | } |
| 1557 | |
| 1558 | /** |
| 1559 | * @brief Generic JSON deserialization with validation for Serializable types. |
no test coverage detected