本文阅读量 次
1. Rust 学习笔记¶
1.1 简介及主要特性¶
1.2 安装¶
1.3 基本语法¶
#[derive(Debug)]
struct Rectangle {
width: u32,
height: u32,
}
fn main() {
let rect1 = Rectangle {
width: 30,
height: 50,
};
println!("rect1 is {:?}", rect1);
}
#[derive(Debug)]
表示
1.4 在线文档¶
rustup
使用教程 https://rust-lang.github.io/rustup/ ⧉- The Rust Programming Language https://doc.rust-lang.org/book/ ⧉
- Rust 标准库 https://doc.rust-lang.org/std/index.html ⧉
- Cargo 官方文档 https://doc.rust-lang.org/cargo/index.html ⧉
rustc
官方文档 https://doc.rust-lang.org/rustc/index.html ⧉rustdoc
官方文档 https://doc.rust-lang.org/rustdoc/index.html ⧉- Rust 版本指引 https://doc.rust-lang.org/edition-guide/index.html ⧉