Trait FileChooserNativeExt

Source
pub trait FileChooserNativeExt: 'static {
    // Required methods
    fn get_accept_label(&self) -> Option<GString>;
    fn get_cancel_label(&self) -> Option<GString>;
    fn set_accept_label(&self, accept_label: Option<&str>);
    fn set_cancel_label(&self, cancel_label: Option<&str>);
    fn get_property_accept_label(&self) -> Option<GString>;
    fn set_property_accept_label(&self, accept_label: Option<&str>);
    fn get_property_cancel_label(&self) -> Option<GString>;
    fn set_property_cancel_label(&self, cancel_label: Option<&str>);
    fn connect_property_accept_label_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;
    fn connect_property_cancel_label_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId;
}

Required Methods§

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§