pub trait TreeDragSourceImpl: ObjectImpl {
    fn drag_data_get(
        &self,
        tree_drag_source: &Self::Type,
        path: &TreePath
    ) -> ContentProvider; fn drag_data_delete(
        &self,
        tree_drag_source: &Self::Type,
        path: &TreePath
    ) -> bool; fn row_draggable(
        &self,
        tree_drag_source: &Self::Type,
        path: &TreePath
    ) -> bool { ... } }

Required methods

Provided methods

Implementors