Result exercise complete
This commit is contained in:
parent
279f55f0dd
commit
70824e2411
|
@ -1,8 +1,6 @@
|
||||||
// result1.rs
|
// result1.rs
|
||||||
// Make this test pass! Execute `rustlings hint result1` for hints :)
|
// Make this test pass! Execute `rustlings hint result1` for hints :)
|
||||||
|
|
||||||
// I AM NOT DONE
|
|
||||||
|
|
||||||
#[derive(PartialEq, Debug)]
|
#[derive(PartialEq, Debug)]
|
||||||
struct PositiveNonzeroInteger(u64);
|
struct PositiveNonzeroInteger(u64);
|
||||||
|
|
||||||
|
@ -14,7 +12,13 @@ enum CreationError {
|
||||||
|
|
||||||
impl PositiveNonzeroInteger {
|
impl PositiveNonzeroInteger {
|
||||||
fn new(value: i64) -> Result<PositiveNonzeroInteger, CreationError> {
|
fn new(value: i64) -> Result<PositiveNonzeroInteger, CreationError> {
|
||||||
Ok(PositiveNonzeroInteger(value as u64))
|
if value > 0 {
|
||||||
|
Ok(PositiveNonzeroInteger(value as u64))
|
||||||
|
} else if value == 0 {
|
||||||
|
Err(CreationError::Zero)
|
||||||
|
} else {
|
||||||
|
Err(CreationError::Negative)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue