pub trait IRtFieldInfoMethods: IRtFieldInfo {
// Provided methods
fn unsafe_get_value(self, obj: impl Into<Object>) -> Object { ... }
fn check_consistency(self, target: impl Into<Object>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn unsafe_get_value(self, obj: impl Into<Object>) -> Object
fn unsafe_get_value(self, obj: impl Into<Object>) -> Object
UnsafeGetValue(crate::system::object::Object) overload
Sourcefn check_consistency(self, target: impl Into<Object>)
fn check_consistency(self, target: impl Into<Object>)
CheckConsistency(crate::system::object::Object) 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: IRtFieldInfo> IRtFieldInfoMethods for __T
Available on crate feature
system-reflection-rtfieldinfo only.