pub unsafe trait Argument {
type Type: Any;
fn matches(ty: &Il2CppType) -> bool;
fn invokable(&mut self) -> *mut c_void;
}
Expand description
Required Associated Types
Required Methods
fn matches(ty: &Il2CppType) -> bool
fn matches(ty: &Il2CppType) -> bool
Checks whether the type can be used as a C# argument with the given
Il2CppType
to call a method