1 2 3 4 5 6 7 8
use crate::*; use std::ffi::OsString; pub enum DragItem<E> where E: Env { Widget(E::WidgetID), Text(String), RawText(OsString), }