Rust筆記
型別
函數
struct
struct Aminal { species: String, name: String, weight: u64, }
資料結構
- 樹的使用函式庫 Apache License 2.0/MIT
函數
- 得到 UTF-8 字串長度的方法:UnicodeSegmentation::graphemes(參見:Stack Overflow)
- 匯入外部函式庫
變數
字串
- 獲得子字串:
a = a[..1].to_string();
struct Aminal { species: String, name: String, weight: u64, }
a = a[..1].to_string();