pub fn get_byte(bytes: &[u8], n: i32) -> Result<i32>
Extracts n’th byte from binary string.
query T SELECT get_byte('\x1234567890'::bytea, 4); ---- 144