pub trait CellEditableImpl: ObjectImpl {
    // Provided methods
    fn editing_done(&self, cell_editable: &Self::Type) { ... }
    fn remove_widget(&self, cell_editable: &Self::Type) { ... }
    fn start_editing(&self, cell_editable: &Self::Type, event: Option<&Event>) { ... }
}

Provided Methods§

source

fn editing_done(&self, cell_editable: &Self::Type)

source

fn remove_widget(&self, cell_editable: &Self::Type)

source

fn start_editing(&self, cell_editable: &Self::Type, event: Option<&Event>)

Implementors§