pub type BoxedInstallFn = Box<dyn FnOnce() -> Pin<Box<dyn Future<Output = Result<()>> + Send>> + Send>;
A boxed async function that performs an installation.
pub struct BoxedInstallFn(/* private fields */);