pub trait IInputField_OnValidateInputMethods: IInputField_OnValidateInput {
// Provided methods
fn ctor(self, object: impl Into<Object>, method: impl Into<IntPtr>) { ... }
fn invoke(
self,
text: impl Into<Il2CppString>,
char_index: impl Into<i32>,
added_char: impl Into<u16>,
) -> u16 { ... }
}Provided Methods§
Sourcefn ctor(self, object: impl Into<Object>, method: impl Into<IntPtr>)
fn ctor(self, object: impl Into<Object>, method: impl Into<IntPtr>)
.ctor(crate::system::object::Object, ::unity::IntPtr) overload
Sourcefn invoke(
self,
text: impl Into<Il2CppString>,
char_index: impl Into<i32>,
added_char: impl Into<u16>,
) -> u16
fn invoke( self, text: impl Into<Il2CppString>, char_index: impl Into<i32>, added_char: impl Into<u16>, ) -> u16
Invoke(::unity::Il2CppString, i32, u16) 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: IInputField_OnValidateInput> IInputField_OnValidateInputMethods for __T
Available on crate feature
unity_engine-ui-inputfield only.