RustのString型
from
Rustの文字列型
雑に言えば、
Vec<T>型
の文字列版のようなもの
可変である
ヒープ上に格納される
UTF-8エンコードの文字列
docs
定義
code:rs
struct String {
vec: Vec<u8>,
}
/mrsekut-book-4873118557/092 (3.5.4 文字列String)
#wip
format!()
Stringでパターンマッチ
http://totem3.hatenablog.jp/entry/2016/10/25/212303