[Rust]How to make string handing to frontend on tauri app

ke na - Jul 25 - - Dev Community
#[tauri::command]
pub fn simple_command()->String{
    "String".to_string()
}
Enter fullscreen mode Exit fullscreen mode

If you want to return a string in a Tauri command,add to_string() to the end of the string just like this.
This allows you to pass any string to the frontend like React.

. . . .
Terabox Video Player