gtk4::subclass::tree_drag_dest

Trait TreeDragDestImpl

Source
pub trait TreeDragDestImpl: ObjectImpl {
    // Required methods
    fn drag_data_received(&self, dest: &TreePath, value: Value) -> bool;
    fn row_drop_possible(&self, dest: &TreePath, value: Value) -> bool;
}
๐Ÿ‘ŽDeprecated: Since 4.10

Required Methodsยง

Source

fn drag_data_received(&self, dest: &TreePath, value: Value) -> bool

๐Ÿ‘ŽDeprecated: Since 4.10
Source

fn row_drop_possible(&self, dest: &TreePath, value: Value) -> bool

๐Ÿ‘ŽDeprecated: Since 4.10

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.

Implementorsยง