pub struct ParsingStats {
pub total_nodes: usize,
pub root_nodes: usize,
pub max_depth: i32,
pub primitive_count: usize,
pub array_count: usize,
pub string_buffer_size: usize,
pub version: u32,
}Expand description
Parsing statistics
Fields§
§total_nodes: usize§root_nodes: usize§max_depth: i32§primitive_count: usize§array_count: usize§string_buffer_size: usize§version: u32Trait Implementations§
Source§impl Clone for ParsingStats
impl Clone for ParsingStats
Source§fn clone(&self) -> ParsingStats
fn clone(&self) -> ParsingStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ParsingStats
impl RefUnwindSafe for ParsingStats
impl Send for ParsingStats
impl Sync for ParsingStats
impl Unpin for ParsingStats
impl UnwindSafe for ParsingStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more