icu4x
icu4x copied to clipboard
Should our marker types, especially data markers, be non-constructible?
We currently use empty structs for our data markers, like this:
struct MyDataStructMarker;
Should we instead make them non-constructible?
enum MyDataStructMarker {}
@robertbastian @Manishearth