pub trait IPropertyInfoItemMethods: IPropertyInfoItem {
// Provided methods
fn ctor(self, obj: impl Into<Object>, info: impl Into<PropertyInfo>) { ... }
fn get_value_type(self) -> SystemType { ... }
fn get_value(self) -> Object { ... }
fn set_value(self, value: impl Into<Object>) { ... }
}Provided Methods§
Sourcefn ctor(self, obj: impl Into<Object>, info: impl Into<PropertyInfo>)
fn ctor(self, obj: impl Into<Object>, info: impl Into<PropertyInfo>)
.ctor(crate::system::object::Object, crate::system::reflection::propertyinfo::PropertyInfo) overload
Sourcefn get_value_type(self) -> SystemType
fn get_value_type(self) -> SystemType
GetValueType() 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: IPropertyInfoItem> IPropertyInfoItemMethods for __T
Available on crate feature
app-propertyinfoitem only.