pub trait TreeDragSourceImpl: ObjectImpl + ObjectSubclass{
// Required methods
fn drag_data_get(&self, path: &TreePath) -> ContentProvider;
fn drag_data_delete(&self, path: &TreePath) -> bool;
// Provided method
fn row_draggable(&self, path: &TreePath) -> bool { ... }
}
Required Methods§
fn drag_data_get(&self, path: &TreePath) -> ContentProvider
fn drag_data_delete(&self, path: &TreePath) -> bool
Provided Methods§
fn row_draggable(&self, path: &TreePath) -> bool
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.