An open API service indexing awesome lists of open source software.

https://github.com/costineest/rust-book

Book notes
https://github.com/costineest/rust-book

book rust rust-learning

Last synced: about 1 year ago
JSON representation

Book notes

Awesome Lists containing this project

README

          

# Chapters

- [3.1. Variables and mutability](./3_1-variables-and-mutability.md)
- [3.2. Data types](./3_2-data-types.md)

# Crates

- https://crates.io/crates/cargo-watch - watches over your Cargo project's source
- https://crates.io/crates/rand - random number generators and other randomness functionality

# Documentation

- `rustup doc –-book` opens:
- `file:///C:/Users/%USERNAME%/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/html/book/index.html` (Windows)
- `file://$HOME/.rustup/toolchains/nightly-x86_64-apple-darwin/share/doc/rust/html/book/index.html` (Mac)
- `rustup doc` opens:
- `file:///C:/Users/%USERNAME%/.rustup/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/html/index.html` (Windows)
- `file://$HOME/.rustup/toolchains/nightly-x86_64-apple-darwin/share/doc/rust/html/index.html` (Mac)
- https://doc.rust-lang.org/std/prelude/index.html
- [Reserved keywords](https://doc.rust-lang.org/book/appendix-01-keywords.html)
- [Operators and symbols](https://doc.rust-lang.org/book/appendix-02-operators.html)