pub struct DataFormatStats {
pub strings_checked: u32,
pub maps_checked: u32,
pub arrays_checked: u32,
pub values_checked: u32,
}Expand description
Statistics from data format validation
Fields§
§strings_checked: u32Number of strings validated
maps_checked: u32Number of maps validated
arrays_checked: u32Number of arrays validated
values_checked: u32Total values validated
Trait Implementations§
Source§impl Clone for DataFormatStats
impl Clone for DataFormatStats
Source§fn clone(&self) -> DataFormatStats
fn clone(&self) -> DataFormatStats
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 moreSource§impl Debug for DataFormatStats
impl Debug for DataFormatStats
Source§impl Default for DataFormatStats
impl Default for DataFormatStats
Source§fn default() -> DataFormatStats
fn default() -> DataFormatStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DataFormatStats
impl RefUnwindSafe for DataFormatStats
impl Send for DataFormatStats
impl Sync for DataFormatStats
impl Unpin for DataFormatStats
impl UnwindSafe for DataFormatStats
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