pub trait ReporterContext: Debug {
type Reporter: Reporter;
// Required method
fn try_build<KeepSpeciation: Boolean, KeepDispersal: Boolean, KeepProgress: Boolean>(
self
) -> Result<FilteredReporter<Self::Reporter, KeepSpeciation, KeepDispersal, KeepProgress>>;
}
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.