Skip to main content

rosu_pp/any/performance/
inspectable.rs

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