#include <DataMapper.hpp>
template<typename T>
{ field.Value() } -> std::convertible_to<typename T::ValueType const&>;
{ mutableField.MutableValue() } -> std::convertible_to<typename T::ValueType&>;
{ field.IsModified() } -> std::convertible_to<bool>;
{ mutableField.SetModified(bool {}) } -> std::convertible_to<void>;
}
Requires that T satisfies to be a field with storage.
Definition at line 33 of file DataMapper.hpp.