Trait ObjectFactoryExt

Source
pub trait ObjectFactoryExt: 'static {
    // Required methods
    fn create_accessible<P: IsA<Object>>(&self, obj: &P) -> Option<Object>;
    fn get_accessible_type(&self) -> Type;
    fn invalidate(&self);
}

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§