pub struct AttributeStat {
pub consumed: AttributeFormCounts,
pub redundant: AttributeFormCounts,
pub emitted: AttributeFormCounts,
}Fields§
§consumed: AttributeFormCountsDeclarative and prefix forms removed from the AST.
redundant: AttributeFormCountsConsumed forms whose attribute effect did not produce emitted output.
For prefixes this includes both already-active outer prefixes and prefixes whose body overrides or otherwise carries the effect.
emitted: AttributeFormCountsCanonical declarative and prefix forms emitted for the attribute.
Trait Implementations§
Source§impl Clone for AttributeStat
impl Clone for AttributeStat
Source§fn clone(&self) -> AttributeStat
fn clone(&self) -> AttributeStat
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 AttributeStat
impl Debug for AttributeStat
Source§impl Default for AttributeStat
impl Default for AttributeStat
Source§fn default() -> AttributeStat
fn default() -> AttributeStat
Returns the “default value” for a type. Read more
impl Eq for AttributeStat
Source§impl PartialEq for AttributeStat
impl PartialEq for AttributeStat
Source§fn eq(&self, other: &AttributeStat) -> bool
fn eq(&self, other: &AttributeStat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AttributeStat
Auto Trait Implementations§
impl Freeze for AttributeStat
impl RefUnwindSafe for AttributeStat
impl Send for AttributeStat
impl Sync for AttributeStat
impl Unpin for AttributeStat
impl UnsafeUnpin for AttributeStat
impl UnwindSafe for AttributeStat
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.