pub type ShutdownHook = Box<dyn Fn() -> Pin<Box<dyn Future<Output = ()> + Send>> + Send + Sync>;
A callback that runs during shutdown. The boxed future must be Send.
Send
pub struct ShutdownHook(/* private fields */);