Skip to main content

ITypeInfoMethods

Trait ITypeInfoMethods 

Source
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§

Source

fn ctor(self)

.ctor() overload

Source

fn system_reflection_i_reflectable_type_get_type_info(self) -> TypeInfo

System.Reflection.IReflectableType.GetTypeInfo() overload

Source

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§

Source§

impl<__T: ITypeInfo> ITypeInfoMethods for __T

Available on crate feature system-reflection-typeinfo only.