pub unsafe fn drop_boxed<T>(payload: ValuePayload)where T: Clone + PartialEq + Display + Debug + Send + Sync + 'static,
Heap drop: free the box.
drop
The payload must own a Box<T> exactly once; it must never be used again afterwards.
Box<T>