add type conversions - From/Into

This commit is contained in:
sunface 2022-03-10 11:07:51 +08:00
commit 165fad67da
1 changed files with 9 additions and 1 deletions

View File

@ -4,10 +4,18 @@ This book was designed for easily diving into and get skilled with Rust, and it'
> 🎊 Updated on 2022-03-09: Add [Type conversions - From/Into](https://practice.rs/type-conversions/from-into.html)
## Read online
## Reading online
- [https://practice.rs](https://practice.rs)
## Running locally
We use [mdbook](https://rust-lang.github.io/mdBook/) building our exercises. You can run locally with below steps:
```shell
$ cargo install mdbook
$ cd rust-by-practice && mdbook serve
```
## Features
Part of our examples and exercises are borrowed from [Rust By Example](https://github.com/rust-lang/rust-by-example), thanks for your great works!