pub fn read_str(buf: &[u8], offset: usize) -> Option<&str>
Read a string slice from the value at offset. Zero-copy — borrows directly from the input buffer. Returns None for non-string types or invalid UTF-8.
offset
None