Function parse_fast

Source
pub fn parse_fast<T>(s: &mut str) -> Result<T, CommonError>
where T: for<'de> Deserialize<'de>,
Expand description

High-performance JSON parsing using simd-json

SAFETY: This function modifies the input string buffer for performance. Only use this when you own the string and don’t need it afterwards.