rustlings/exercises/error_handling/result1.rs
Zerotask 86dccc4ca7
docs(exercises): consistent exercise description
a description starts with the filename, has an optional description and
ends with help information
2021-04-25 11:29:39 +02:00

33 lines
712 B
Rust

// result1.rs
//
// Make this test pass!
//
// If you need help, open the corresponding README.md or run: rustlings hint result1
// I AM NOT DONE
#[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));
}