pub struct ResolutionStats {
pub types_resolved: usize,
pub elements_resolved: usize,
pub attributes_resolved: usize,
pub groups_resolved: usize,
pub attribute_groups_resolved: usize,
pub notations_resolved: usize,
pub errors: usize,
}Expand description
Statistics from the resolution pass
Fields§
§types_resolved: usizeNumber of type references resolved
elements_resolved: usizeNumber of element references resolved
attributes_resolved: usizeNumber of attribute references resolved
groups_resolved: usizeNumber of group references resolved
attribute_groups_resolved: usizeNumber of attribute group references resolved
notations_resolved: usizeNumber of notation references resolved
errors: usizeTotal errors encountered
Trait Implementations§
Source§impl Debug for ResolutionStats
impl Debug for ResolutionStats
Source§impl Default for ResolutionStats
impl Default for ResolutionStats
Source§fn default() -> ResolutionStats
fn default() -> ResolutionStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ResolutionStats
impl RefUnwindSafe for ResolutionStats
impl Send for ResolutionStats
impl Sync for ResolutionStats
impl Unpin for ResolutionStats
impl UnsafeUnpin for ResolutionStats
impl UnwindSafe for ResolutionStats
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