Trait ColorChooserDialogExt

Source
pub trait ColorChooserDialogExt: 'static {
    // Required methods
    fn get_property_show_editor(&self) -> bool;
    fn set_property_show_editor(&self, show_editor: bool);
    fn connect_property_show_editor_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;
}

Required Methods§

Source

fn get_property_show_editor(&self) -> bool

Source

fn set_property_show_editor(&self, show_editor: bool)

Source

fn connect_property_show_editor_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.

Implementors§