pub trait Decode { // Required method fn decode(bytes: &[u8]) -> (i32, u32); }
A callback that decodes the next code point from the input slice. It should return the code point, and how many bytes were decoded.