pub trait CellEditableImpl: ObjectImpl {
    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

Implementors