pub trait IDebugUI_IValueFieldMethods: IDebugUI_IValueField {
// Provided methods
fn get_value(self) -> Object { ... }
fn set_value(self, value: impl Into<Object>) { ... }
fn validate_value(self, value: impl Into<Object>) -> Object { ... }
}Provided Methods§
Sourcefn validate_value(self, value: impl Into<Object>) -> Object
fn validate_value(self, value: impl Into<Object>) -> Object
ValidateValue(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: IDebugUI_IValueField> IDebugUI_IValueFieldMethods for __T
Available on crate feature
unity_engine-rendering-debugui only.