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§
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)
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.