diff --git a/proxmox-rest-server/src/daemon.rs b/proxmox-rest-server/src/daemon.rs index 789ba47c..c527a586 100644 --- a/proxmox-rest-server/src/daemon.rs +++ b/proxmox-rest-server/src/daemon.rs @@ -25,7 +25,7 @@ extern "C" { } // Unfortunately FnBox is nightly-only and Box is unusable, so just use Box... -pub type BoxedStoreFunc = Box Result + UnwindSafe + Send>; +type BoxedStoreFunc = Box Result + UnwindSafe + Send>; /// Helper trait to "store" something in the environment to be re-used after re-executing the /// service on a reload.