W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
查找錯(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`.
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: