Skip to main content

IDebugUI_IValueFieldMethods

Trait IDebugUI_IValueFieldMethods 

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

Source

fn get_value(self) -> Object

GetValue() overload

Source

fn set_value(self, value: impl Into<Object>)

SetValue(crate::system::object::Object) overload

Source

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§

Source§

impl<__T: IDebugUI_IValueField> IDebugUI_IValueFieldMethods for __T

Available on crate feature unity_engine-rendering-debugui only.