Tauri Rust 控制臺(tái)

2023-10-09 14:20 更新

查找錯(cuò)誤的第一個(gè)地方是Rust Console。 這是在您運(yùn)行中的終端,例如 tauridev。 您可以使用以下代碼從 Rust 文件中將某些內(nèi)容打印到該控制臺(tái)

println!("Message from Rust: {}", msg);

有時(shí)你的 Rust 代碼中可能會(huì)有錯(cuò)誤,而 Rust 編譯器可以給你很多信息。 例如,如果 tauri dev 崩潰,您可以在 Linux 和 macOS 上像這樣重新運(yùn)行它:

RUST_BACKTRACE=1 tauri dev

或者在Windows上可以這樣:

set RUST_BACKTRACE=1 
tauri dev

此命令為您提供精細(xì)的堆棧跟蹤。 一般來說,Rust 編譯器通過為您提供有關(guān)問題的詳細(xì)信息來幫助您,例如:

error[E0425]: cannot find value `sun` in this scope
--> src/main.rs:11:5
|
11 | sun += i.to_string().parse::<u64>().unwrap();
| ^^^ help: a local variable with a similar name exists: `sum`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0425`.


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)