pub struct DerivationStats {
pub simple_types_validated: usize,
pub complex_types_validated: usize,
pub list_types_validated: usize,
pub union_types_validated: usize,
pub restrictions_validated: usize,
pub extensions_validated: usize,
pub errors: usize,
}Expand description
Statistics from derivation validation
Fields§
§simple_types_validated: usizeNumber of simple types validated
complex_types_validated: usizeNumber of complex types validated
list_types_validated: usizeNumber of list types validated
union_types_validated: usizeNumber of union types validated
restrictions_validated: usizeNumber of restriction derivations validated
extensions_validated: usizeNumber of extension derivations validated
errors: usizeNumber of errors encountered
Trait Implementations§
Source§impl Debug for DerivationStats
impl Debug for DerivationStats
Source§impl Default for DerivationStats
impl Default for DerivationStats
Source§fn default() -> DerivationStats
fn default() -> DerivationStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DerivationStats
impl RefUnwindSafe for DerivationStats
impl Send for DerivationStats
impl Sync for DerivationStats
impl Unpin for DerivationStats
impl UnsafeUnpin for DerivationStats
impl UnwindSafe for DerivationStats
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