pub trait Report { // Required method fn report<S: Display>(self, context: impl FnOnce() -> S); }
Consumes self and reports the results of a computation.