mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-12-26 15:26:29 +00:00
Compare commits
1 commit
8e6cc90dde
...
587e2a63a9
Author | SHA1 | Date | |
---|---|---|---|
|
587e2a63a9 |
1 changed files with 9 additions and 9 deletions
|
@ -29,15 +29,15 @@ impl ParsePosNonzeroError {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// As an alternative solution, implementing the `From` trait allows for the
|
/// As an alternative solution, implementing the `From` trait allows for the
|
||||||
// automatic conversion from a `ParseIntError` into a `ParsePosNonzeroError`
|
/// automatic conversion from a `ParseIntError` into a `ParsePosNonzeroError`
|
||||||
// using the `?` operator, without the need to call `map_err`.
|
/// using the `?` operator, without the need to call `map_err`.
|
||||||
//
|
///
|
||||||
// ```
|
/// ```
|
||||||
// let x: i64 = s.parse()?;
|
/// let x: i64 = s.parse()?;
|
||||||
// ```
|
/// ```
|
||||||
//
|
///
|
||||||
// Traits like `From` will be dealt with in later exercises.
|
/// Traits like `From` will be dealt with in later exercises.
|
||||||
impl From<ParseIntError> for ParsePosNonzeroError {
|
impl From<ParseIntError> for ParsePosNonzeroError {
|
||||||
fn from(err: ParseIntError) -> Self {
|
fn from(err: ParseIntError) -> Self {
|
||||||
ParsePosNonzeroError::ParseInt(err)
|
ParsePosNonzeroError::ParseInt(err)
|
||||||
|
|
Loading…
Reference in a new issue