pub trait TypePluginExt: IsA<TypePlugin> + Sealed + 'static {
    // Provided methods
    fn complete_interface_info(
        &self,
        instance_type: Type,
        interface_type: Type
    ) -> InterfaceInfo { ... }
    fn complete_type_info(&self, g_type: Type) -> (TypeInfo, TypeValueTable) { ... }
    fn unuse(&self) { ... }
    fn use_(&self) { ... }
}

Provided Methods§

source

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

source

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

source

fn unuse(&self)

source

fn use_(&self)

Object Safety§

This trait is not object safe.

Implementors§