pub fn read_optional_byte<R>(r: &mut R) -> Result<Option<u8>, Error>where R: Read,
Reads an optional byte from the Read.
Read
Returns None when the Read has no more data.
None