pub struct SimdParseResult<'a> {
pub value: LazyJsonValue<'a>,
pub memory_usage: MemoryUsage,
pub simd_used: bool,
pub processing_time_ns: u64,
}
Expand description
Parse result containing both the value and memory statistics
Fields§
§value: LazyJsonValue<'a>
§memory_usage: MemoryUsage
§simd_used: bool
§processing_time_ns: u64
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for SimdParseResult<'a>
impl<'a> RefUnwindSafe for SimdParseResult<'a>
impl<'a> Send for SimdParseResult<'a>
impl<'a> Sync for SimdParseResult<'a>
impl<'a> Unpin for SimdParseResult<'a>
impl<'a> UnwindSafe for SimdParseResult<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more