pub struct LowerAttributesReport {
pub attributes: HashMap<AttributeSet, AttributeStat>,
pub eliminated_empty_segments: usize,
}Expand description
Statistics accumulated across every LowerAttributes invocation in one transform run.
The engine can run LowerAttributes before and after Rewrite. This report intentionally aggregates both invocations instead of splitting pre/post counters.
Fields§
§attributes: HashMap<AttributeSet, AttributeStat>Per-attribute counters for consumed inputs and emitted canonical forms.
eliminated_empty_segments: usizeTrailing changepoints whose segment ended up empty (e.g. {x \bf} or
\sqrt{\bf}).
Trait Implementations§
Source§impl Clone for LowerAttributesReport
impl Clone for LowerAttributesReport
Source§fn clone(&self) -> LowerAttributesReport
fn clone(&self) -> LowerAttributesReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LowerAttributesReport
impl Debug for LowerAttributesReport
Source§impl Default for LowerAttributesReport
impl Default for LowerAttributesReport
Source§fn default() -> LowerAttributesReport
fn default() -> LowerAttributesReport
Returns the “default value” for a type. Read more
impl Eq for LowerAttributesReport
Source§impl PartialEq for LowerAttributesReport
impl PartialEq for LowerAttributesReport
Source§fn eq(&self, other: &LowerAttributesReport) -> bool
fn eq(&self, other: &LowerAttributesReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LowerAttributesReport
Auto Trait Implementations§
impl Freeze for LowerAttributesReport
impl RefUnwindSafe for LowerAttributesReport
impl Send for LowerAttributesReport
impl Sync for LowerAttributesReport
impl Unpin for LowerAttributesReport
impl UnsafeUnpin for LowerAttributesReport
impl UnwindSafe for LowerAttributesReport
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.