The serialize code already requires unsigned char
-holding containers, which can be serialized as-is, but should be serialized as Span (that is, without the length serialized), to be explicitly converted to Span. However, for unsigned char
-holding containers that can not be serialized as-is, because their serialize-overload is missing, this requirement wasn’t there.
Fix this by requiring all Byte-Span serializations to be explicit.