Concept to constrain any begin event type.
More...
#include <Events.hpp>
template<typename EventType>
std::constructible_from<EventType, const char*, uint32_t, uint64_t> &&
requires (EventType event) {
{ event.name } -> std::same_as<std::string&>;
{ event.dev_id } -> std::same_as<uint32_t&>;
{ event.event_id } -> std::same_as<uint64_t&>;
}
Concept to constrain any begin event type.
Concept to constrain any begin event type.
Definition at line 173 of file Events.hpp.