pub trait IMonoProperty: IRuntimePropertyInfo {
// Provided methods
fn klass(self) -> IntPtr { ... }
fn set_klass(self, value: IntPtr) { ... }
fn prop(self) -> IntPtr { ... }
fn set_prop(self, value: IntPtr) { ... }
fn info(self) -> MonoPropertyInfo { ... }
fn set_info(self, value: MonoPropertyInfo) { ... }
fn cached(self) -> PInfo { ... }
fn set_cached(self, value: PInfo) { ... }
fn cached_getter(self) -> MonoProperty_GetterAdapter { ... }
fn set_cached_getter(self, value: MonoProperty_GetterAdapter) { ... }
}Provided Methods§
fn klass(self) -> IntPtr
fn set_klass(self, value: IntPtr)
fn prop(self) -> IntPtr
fn set_prop(self, value: IntPtr)
fn info(self) -> MonoPropertyInfo
fn set_info(self, value: MonoPropertyInfo)
fn cached(self) -> PInfo
fn set_cached(self, value: PInfo)
fn cached_getter(self) -> MonoProperty_GetterAdapter
fn set_cached_getter(self, value: MonoProperty_GetterAdapter)
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.