Trait AppChooserDialogExt

Source
pub trait AppChooserDialogExt: 'static {
    // Required methods
    fn get_heading(&self) -> Option<GString>;
    fn get_widget(&self) -> Widget;
    fn set_heading(&self, heading: &str);
    fn get_property_gfile(&self) -> Option<File>;
    fn connect_property_heading_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;
}

Required Methods§

Source

fn get_heading(&self) -> Option<GString>

Source

fn get_widget(&self) -> Widget

Source

fn set_heading(&self, heading: &str)

Source

fn get_property_gfile(&self) -> Option<File>

Source

fn connect_property_heading_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§