pub trait TreeDragSourceExt: 'static {
    // Required methods
    fn drag_data_delete(&self, path: &TreePath) -> bool;
    fn drag_data_get(&self, path: &TreePath) -> Option<ContentProvider>;
    fn row_draggable(&self, path: &TreePath) -> bool;
}

Required Methods§

source

fn drag_data_delete(&self, path: &TreePath) -> bool

source

fn drag_data_get(&self, path: &TreePath) -> Option<ContentProvider>

source

fn row_draggable(&self, path: &TreePath) -> bool

Implementors§