pub unsafe fn from_slice_unchecked<'a, T>(json: &'a [u8]) -> Result<T>where
T: Deserialize<'a>,
Expand description
Deserialize an instance of type T
from bytes of JSON text.
ยงSafety
The json passed in must be valid UTF-8.
pub unsafe fn from_slice_unchecked<'a, T>(json: &'a [u8]) -> Result<T>where
T: Deserialize<'a>,
Deserialize an instance of type T
from bytes of JSON text.
The json passed in must be valid UTF-8.