pub trait InvalidationReasonKind:
DynamicEqHash
+ Send
+ Sync
+ 'static {
// Required method
fn fmt(
&self,
data: &FxIndexSet<StaticOrArc<dyn InvalidationReason>>,
f: &mut Formatter<'_>,
) -> Result;
}
Expand description
Required Methods§
Sourcefn fmt(
&self,
data: &FxIndexSet<StaticOrArc<dyn InvalidationReason>>,
f: &mut Formatter<'_>,
) -> Result
fn fmt( &self, data: &FxIndexSet<StaticOrArc<dyn InvalidationReason>>, f: &mut Formatter<'_>, ) -> Result
Displays a description of multiple invalidation reasons of the same kind. It is only called with two or more reasons.