Trait TypePluginImpl

Source
pub trait TypePluginImpl: ObjectImpl + TypePluginImplExt {
    // Provided methods
    fn use_plugin(&self) { ... }
    fn unuse_plugin(&self) { ... }
    fn complete_type_info(&self, type_: Type) -> (TypeInfo, TypeValueTable) { ... }
    fn complete_interface_info(
        &self,
        instance_type: Type,
        interface_type: Type,
    ) -> InterfaceInfo { ... }
}

Provided Methods§

Source

fn use_plugin(&self)

Source

fn unuse_plugin(&self)

Source

fn complete_type_info(&self, type_: Type) -> (TypeInfo, TypeValueTable)

Source

fn complete_interface_info( &self, instance_type: Type, interface_type: Type, ) -> InterfaceInfo

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§