pub trait TreeDragDestImpl: ObjectImpl + ObjectSubclass{
// Required methods
fn drag_data_received(&self, dest: &TreePath, value: Value) -> bool;
fn row_drop_possible(&self, dest: &TreePath, value: Value) -> bool;
}
Required Methods§
fn drag_data_received(&self, dest: &TreePath, value: Value) -> bool
fn row_drop_possible(&self, dest: &TreePath, value: Value) -> 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.