pub unsafe extern "C" fn mysql_plugin_options(
    plugin: *mut st_mysql_client_plugin,
    option: *const c_char,
    value: *const c_void
) -> c_int
Expand description

set plugin options

Can be used to set extra options and affect behavior for a plugin. This function may be called multiple times to set several options

@param plugin an st_mysql_client_plugin structure @param option a string which specifies the option to set @param value value for the option.

@retval 0 on success, 1 in case of failure