1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2025-07-12 18:55:33 -04:00

Start an error handling section and move the result exercise there

I think this is a better categorization than "standard library types".
This commit is contained in:
Carol (Nichols || Goulding) 2016-02-16 17:42:24 -05:00
parent 79f0b17473
commit d145c6334f
2 changed files with 3 additions and 3 deletions
error_handling

42
error_handling/result1.rs Normal file
View file

@ -0,0 +1,42 @@
// Make this test pass! Scroll down for hints :)
#[derive(PartialEq,Debug)]
struct PositiveNonzeroInteger(u64);
#[derive(PartialEq,Debug)]
enum CreationError {
Negative,
Zero,
}
impl PositiveNonzeroInteger {
fn new(value: i64) -> Result<PositiveNonzeroInteger, CreationError> {
Ok(PositiveNonzeroInteger(value as u64))
}
}
#[test]
fn test_creation() {
assert!(PositiveNonzeroInteger::new(10).is_ok());
assert_eq!(Err(CreationError::Negative), PositiveNonzeroInteger::new(-10));
assert_eq!(Err(CreationError::Zero), PositiveNonzeroInteger::new(0));
}
// `PositiveNonzeroInteger::new` is always creating a new instance and returning an `Ok` result.
// It should be doing some checking, returning an `Err` result if those checks fail, and only
// returning an `Ok` result if those checks determine that everything is... okay :)