pub trait ITypeInfoMethods: ITypeInfo {
// Provided methods
fn ctor(self) { ... }
fn system_reflection_i_reflectable_type_get_type_info(self) -> TypeInfo { ... }
fn get_implemented_interfaces(self) -> IEnumerable_1<SystemType> { ... }
}Provided Methods§
Sourcefn system_reflection_i_reflectable_type_get_type_info(self) -> TypeInfo
fn system_reflection_i_reflectable_type_get_type_info(self) -> TypeInfo
System.Reflection.IReflectableType.GetTypeInfo() overload
Sourcefn get_implemented_interfaces(self) -> IEnumerable_1<SystemType>
fn get_implemented_interfaces(self) -> IEnumerable_1<SystemType>
get_ImplementedInterfaces() overload
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§
impl<__T: ITypeInfo> ITypeInfoMethods for __T
Available on crate feature
system-reflection-typeinfo only.