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

Object Safety§

This trait is not object safe.

Implementors§