In v2, is it possible to specify a custom Deserializer for #[tauri::command] arguments?
e.g.
std::ffi::OsString does not implement Deserialize from wasm32 targets, so a custom Serializer /
Deserializer pair must be used if using a Rust-based frontend like Leptos or Yew.
#[tauri::command]
fn my_cmd(file_name: std::ffi::OsString) {
// ...
}