pub unsafe fn Module_method_names(
self_: Pin<&mut Module>,
method_names_out: *mut Vec<String>,
) -> ErrorAvailable on crate feature
module only.Expand description
Get a list of method names available in the loaded program.
Loads the program and method if needed.
§Arguments
method_names_out: A pointer to a (non initialized) vector that will be created and filled with the method names.
§Returns
A error indicating whether the method names retrieval was successful or not.
§Safety
The method_names_out vector can be used only if the function returns Error::Ok.