pub trait DataTransferItemMethods<D: DomTypes> {
    // Required methods
    fn Kind(&self) -> DOMString;
    fn Type(&self) -> DOMString;
    fn GetAsString(&self, callback: Option<Rc<FunctionStringCallback>>);
    fn GetAsFile(&self) -> Option<Root<Dom<File>>>;
}

Required Methods§

Implementors§