parse_json_fast

Function parse_json_fast 

Source
pub fn parse_json_fast<T>(bytes: &mut [u8]) -> Result<T>
where T: for<'de> Deserialize<'de>,
Expand description

Fast JSON parsing using SIMD instructions when possible Falls back to serde_json if simd-json fails Note: This requires owned types (no borrowing from input)