fn len(byte: u8) -> Option<usize>
Given a UTF-8 leading byte, this returns the total number of code units in the following encoded codepoint.
If the given byte is not a valid UTF-8 leading byte, then this returns None.
None