Template Struct is_serializable_type

Struct Documentation

template<typename T, typename S>
struct is_serializable_type

Struct used to detect whether type T is serializable.

Public Types

using value_type = std::remove_const_t<typename std::remove_reference_t<T>>

Public Static Attributes

static constexpr bool value  =std::experimental::is_detected_v<serialize_value_t,value_type> orhas_serialize_v<value_type,S>