pub unsafe trait Arguments<const N: usize> {
type Type: Any;
fn matches(method: &MethodInfo) -> bool;
fn invokable(&mut self) -> [*mut c_void; N];
}
Expand description
Required Associated Types
Required Methods
fn matches(method: &MethodInfo) -> bool
fn matches(method: &MethodInfo) -> bool
Checks whether the type can be used as a C# argument collection for the
given MethodInfo