Expand description
Faster parsers using nom.
Functionsยง
- be_
i16_ smart - be_u16_smart but as i16.
- be_
u16_ smart - Reads 1 byte if the first byte < 128, reads 2 bytes otherwise.
- be_
u32_ smart - Reads 2 bytes if the first byte <= -1 after calculations, reads 4 bytes otherwise.
- be_
u32_ smart_ compat - rs_
string - Reads a 0-terminated string from the given buffer. Uses
String::from_utf8_lossy()
for the conversion.