I would like to have a set that may contain Timestamp
s and Decimal
s. I could use a BTreeSet
, but then I would need to create a total ordering over my entire public data model using Ord
(which will mean that the meaningless total ordering is public even though it's an implementation detail).