pub trait InspectablePerformance: IGameMode {
type InspectPerformance<'a>;
// Required method
fn inspect_performance<'a>(
perf: &'a Self::Performance<'_>,
attrs: &'a Self::DifficultyAttributes,
) -> Self::InspectPerformance<'a>;
}Required Associated Types§
type InspectPerformance<'a>
Required Methods§
fn inspect_performance<'a>( perf: &'a Self::Performance<'_>, attrs: &'a Self::DifficultyAttributes, ) -> Self::InspectPerformance<'a>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.