#pragma once #include "simdjson.h" namespace partial_tweets { template struct twitter_user { uint64_t id{}; StringType screen_name{}; template bool operator==(const twitter_user &other) const { return id == other.id && screen_name == other.screen_name; } }; } // namespace partial_tweets