mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-12-25 23:10:30 +00:00
Compare commits
8 commits
1e335d4910
...
28a51b6447
Author | SHA1 | Date | |
---|---|---|---|
|
28a51b6447 | ||
|
dd0634c483 | ||
|
fc0cd8f0f8 | ||
|
d5cae8ff59 | ||
|
fa6680ff76 | ||
|
2bccdcbd2c | ||
|
60e0d4ae8a | ||
|
a025ce0538 |
2 changed files with 27 additions and 0 deletions
12
README.md
12
README.md
|
@ -45,6 +45,18 @@ cargo install rustlings
|
||||||
|
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
|
> [!CAUTION]
|
||||||
|
> Don't try to clone the repository to do the exercises! `rust-analyzer` won't work in that case. Please follow the instructions above instead.
|
||||||
|
>
|
||||||
|
> <details>
|
||||||
|
> <summary>Why?</summary>
|
||||||
|
>
|
||||||
|
>The intended way to run Rustlings is to install the binary and run `rustlings init` as described in the installation/initialization sections. This generates a `Cargo.toml` (different than what you see in the repository) that includes each exercise as a separate binary target which is enough for `rust-analyzer` to work.
|
||||||
|
>
|
||||||
|
>If you just clone the repository and try to run and edit the exercises directly, the language server will not work.
|
||||||
|
>
|
||||||
|
> </details>
|
||||||
|
|
||||||
### Initialization
|
### Initialization
|
||||||
|
|
||||||
After installing Rustlings, run the following command to initialize the `rustlings/` directory:
|
After installing Rustlings, run the following command to initialize the `rustlings/` directory:
|
||||||
|
|
|
@ -29,6 +29,21 @@ impl ParsePosNonzeroError {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// As an alternative solution, implementing the `From` trait allows for the
|
||||||
|
// automatic conversion from a `ParseIntError` into a `ParsePosNonzeroError`
|
||||||
|
// using the `?` operator, without the need to call `map_err`.
|
||||||
|
//
|
||||||
|
// ```
|
||||||
|
// let x: i64 = s.parse()?;
|
||||||
|
// ```
|
||||||
|
//
|
||||||
|
// Traits like `From` will be dealt with in later exercises.
|
||||||
|
impl From<ParseIntError> for ParsePosNonzeroError {
|
||||||
|
fn from(err: ParseIntError) -> Self {
|
||||||
|
ParsePosNonzeroError::ParseInt(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(PartialEq, Debug)]
|
#[derive(PartialEq, Debug)]
|
||||||
struct PositiveNonzeroInteger(u64);
|
struct PositiveNonzeroInteger(u64);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue