pub trait Outcome: Debug + 'static { }Expand description
Observed outcome after a decision was executed.
Implementations define what constitutes an “outcome” for their domain. Examples: actual frame time (u64), actual resize inter-arrival (f64), whether the diff strategy matched (bool).
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".