Let’s say I want to annotate the parameter to a function, and it should satisfy both typing.Sized and typing.Hashable (any other 2+ types could apply, I just picked these two for the sake of example). How would I annotate this? Given that one can combine types as an “or” using Sized | Hashable, I would expect something like: Sized &