「Rust筆記」修訂間的差異

增加 268 位元組 、 2024年3月16日 (星期六)
無編輯摘要
行 83: 行 83:
# 獲得子字串:<code>a = a[..1].to_string();</code>
# 獲得子字串:<code>a = a[..1].to_string();</code>


== Gtk4 ==
==食譜 (Cookbook)==
===子目錄的item用for遍歷,轉成字串===
<pre>
    let corpus_CSV_paths = fs::read_dir("./corpus").unwrap();
    for path in corpus_CSV_paths {
      let path_string = format!("{:?}", path.unwrap().path());
    }
</pre>
==函式庫==
=== Gtk4 ===
# [[Grid於Rust的Gtk4 binding]]
# [[Grid於Rust的Gtk4 binding]]


[[category:資訊]]
[[category:資訊]]