pub type DragAndDropPayload = Rc<dyn Any>;
What a transfer carries: any value the source chose, which a target downcasts to the type it expects.
pub struct DragAndDropPayload { /* private fields */ }