twilight_http/
json.rs

1#[cfg(not(feature = "simd-json"))]
2pub use serde_json::{to_vec, Error as JsonError};
3#[cfg(feature = "simd-json")]
4pub use simd_json::{to_vec, Error as JsonError};
5
6use serde::de::DeserializeOwned;
7
8#[cfg(not(feature = "simd-json"))]
9use serde_json::Result as JsonResult;
10#[cfg(feature = "simd-json")]
11use simd_json::Result as JsonResult;
12
13pub fn from_bytes<T: DeserializeOwned>(bytes: &[u8]) -> JsonResult<T> {
14    #[cfg(not(feature = "simd-json"))]
15    {
16        serde_json::from_slice(bytes)
17    }
18
19    #[cfg(feature = "simd-json")]
20    {
21        // Bytes does not implement DerefMut so we have to allocate
22        simd_json::from_slice(&mut bytes.to_vec())
23    }
24}