1 2 3 4 5 6 7 8 9 10
use crate::model::mode::IGameMode; pub trait InspectablePerformance: IGameMode { type InspectPerformance<'a>; fn inspect_performance<'a>( perf: &'a Self::Performance<'_>, attrs: &'a Self::DifficultyAttributes, ) -> Self::InspectPerformance<'a>; }