diff options
| author | Ali Afsharzadeh <afsharzadeh8@gmail.com> | 2023-03-30 19:53:22 +0330 |
|---|---|---|
| committer | Ali Afsharzadeh <afsharzadeh8@gmail.com> | 2023-03-30 19:53:22 +0330 |
| commit | 382e16eb7ea66cddc4860f4b19453b031a2a8a8a (patch) | |
| tree | 4867f505b36ed69381a294b58d056cd9e92b8439 /exercises/conversions | |
| parent | 362c1b0d113ad9a5bd4d1dee8086757efd060785 (diff) | |
feat(docs): add markdown linter for exercises README.md files
Diffstat (limited to 'exercises/conversions')
| -rw-r--r-- | exercises/conversions/README.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/exercises/conversions/README.md b/exercises/conversions/README.md index 8d7da93..619a78c 100644 --- a/exercises/conversions/README.md +++ b/exercises/conversions/README.md @@ -6,6 +6,7 @@ The simplest form of type conversion is a type cast expression. It is denoted wi 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. The traits are the following: + - `From` and `Into` covered in [`from_into`](from_into.rs) - `TryFrom` and `TryInto` covered in [`try_from_into`](try_from_into.rs) - `AsRef` and `AsMut` covered in [`as_ref_mut`](as_ref_mut.rs) @@ -17,5 +18,6 @@ These should be the main ways ***within the standard library*** to convert data ## Further information These are not directly covered in the book, but the standard library has a great documentation for it. + - [conversions](https://doc.rust-lang.org/std/convert/index.html) -- [`FromStr` trait](https://doc.rust-lang.org/std/str/trait.FromStr.html)
\ No newline at end of file +- [`FromStr` trait](https://doc.rust-lang.org/std/str/trait.FromStr.html) |
