rustlings/exercises/conversions
fmoko a39ffb2fb8
Merge pull request #368 from apatniv/update_test_case
2020-05-03 13:31:46 +02:00
..
README.md feat: Add type conversion and parsing exercises 2019-12-16 09:12:13 -05:00
as_ref_mut.rs remove bottom comment instead of top 2020-04-08 11:00:11 +02:00
from_into.rs Merge pull request #368 from apatniv/update_test_case 2020-05-03 13:31:46 +02:00
from_str.rs Review Comments: Add other test cases 2020-05-02 20:41:11 -04:00
try_from_into.rs Review Comments: Add other test cases 2020-05-02 20:41:11 -04:00
using_as.rs I AM NOT DONE comment in conversions exercise files 2019-12-16 11:33:00 -05:00

README.md

Type conversions

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

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 tries to cover this.

Rust also offers traits that facilitate type conversions upon implementation. These traits can be found under the convert module. The traits are the following:

Furthermore, the std::str module offers a trait called FromStr 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.

These should be the main ways within the standard library to convert data into your desired types.

Book Sections

These are not directly covered in the book, but the standard library has great documentation for conversions here. The FromStr trait is also covered here.