Trait StyleSchemeChooserExt

Source
pub trait StyleSchemeChooserExt: 'static {
    // Required methods
    fn get_style_scheme(&self) -> Option<StyleScheme>;
    fn set_style_scheme<P: IsA<StyleScheme>>(&self, scheme: &P);
    fn connect_property_style_scheme_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§