pub trait CellEditableExt: 'static {
// Required methods
fn editing_done(&self);
fn remove_widget(&self);
fn start_editing(&self, event: Option<&Event>);
fn get_property_editing_canceled(&self) -> bool;
fn set_property_editing_canceled(&self, editing_canceled: bool);
fn connect_editing_done<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId;
fn connect_remove_widget<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId;
fn connect_property_editing_canceled_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId;
}
Required Methods§
fn editing_done(&self)
fn remove_widget(&self)
fn start_editing(&self, event: Option<&Event>)
fn get_property_editing_canceled(&self) -> bool
fn set_property_editing_canceled(&self, editing_canceled: bool)
fn connect_editing_done<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_remove_widget<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_property_editing_canceled_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
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.