Rust 学习资料

安装

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

镜像加速

echo "RUSTUP_DIST_SERVER=https://mirrors.tuna.tsinghua.edu.cn/rustup"  >> ~/.cargo/env  

https://www.cnblogs.com/hustcpp/p/12341098.html
https://mirrors-i.tuna.tsinghua.edu.cn/help/rustup/

#终端执行
rustup doc

官网
https://www.rust-lang.org/zh-CN/learn

Rust 程序设计语言(第二版) 简体中文版
https://kaisery.gitbooks.io/trpl-zh-cn/content/

初学者的Rust中文教程
https://rustcc.gitbooks.io/rustprimer/content/

练习 rustlings

rustlings
https://github.com/rust-lang/rustlings

rustlings-solutions
https://github.com/nonotion/rustlings-solutions

原文地址:https://www.cnblogs.com/srczhang/p/13217879.html