pub fn pop(data: &mut &[u8]) -> Option<u8>
Pops a single byte from the front of data, returning it and consuming it from data. Returns None if data is empty.
data
None