Skip to content

Commit ef99b5c

Browse files
committed
docs: update README after rebase
1 parent 5b1edf5 commit ef99b5c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

exercises/23_conversions/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
Rust offers a multitude of ways to convert a value of a given type into another type.
44

5-
The simplest form of type conversion is a type cast expression. It is denoted with the binary operator `as`. For instance, `println!("{}", 1 + 1.0);` would not compile, since `1` is an integer while `1.0` is a float. However, `println!("{}", 1 as f32 + 1.0)` should compile. The exercise [`using_as`](using_as.rs) tries to cover this.
5+
The simplest form of type conversion is a type cast expression. It is denoted with the binary operator `as`. For instance, `println!("{}", 1 + 1.0);` would not compile, since `1` is an integer while `1.0` is a float. However, `println!("{}", 1 as f32 + 1.0)` should compile. The exercise [`conversions1`](conversions1.rs) tries to cover this.
66

77
Rust also offers traits that facilitate type conversions upon implementation. These traits can be found under the [`convert`](https://doc.rust-lang.org/std/convert/index.html) module.
88
The traits are the following:
99

10-
- `From` and `Into` covered in [`from_into`](from_into.rs)
11-
- `TryFrom` and `TryInto` covered in [`try_from_into`](try_from_into.rs)
12-
- `AsRef` and `AsMut` covered in [`as_ref_mut`](as_ref_mut.rs)
10+
- `From` and `Into` covered in [`conversions2`](conversions2.rs)
11+
- `TryFrom` and `TryInto` covered in [`conversions4`](conversions4.rs)
12+
- `AsRef` and `AsMut` covered in [`conversions5`](conversions5.rs)
1313

1414
Furthermore, the `std::str` module offers a trait called [`FromStr`](https://doc.rust-lang.org/std/str/trait.FromStr.html) which helps with converting strings into target types via the `parse` method on strings. If properly implemented for a given type `Person`, then `let p: Person = "Mark,20".parse().unwrap()` should both compile and run without panicking.
1515

0 commit comments

Comments
 (0)