pub trait PrerequisiteEventRecorder {
// Required method
fn record(&self, event: PrerequisiteEvent);
}Expand description
Trait used by evaluate to record the result of prerequisite flag evaluations.
Required Methods§
Sourcefn record(&self, event: PrerequisiteEvent)
fn record(&self, event: PrerequisiteEvent)
Record the results of a prerequisite flag evaluation.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".