pub trait Run { type Output; // Required method fn run(self) -> Self::Output; }
A computation that can be run without additional compilation.
This trait is automatically implemented for types implementing RunCore.
RunCore