rustlings/exercises/error_handling/errors4.rs
2023-05-22 05:13:08 -05:00

32 lines
844 B
Rust

// errors4.rs
// Execute `rustlings hint errors4` or use the `hint` watch subcommand for a hint.
#[derive(PartialEq, Debug)]
struct PositiveNonzeroInteger(u64);
#[derive(PartialEq, Debug)]
enum CreationError {
Negative,
Zero,
}
impl PositiveNonzeroInteger {
fn new(value: i64) -> Result<PositiveNonzeroInteger, CreationError> {
// Hmm...? Why is this only returning an Ok value?
if value < 0 { return Err(CreationError::Negative); }
if value == 0 { return Err(CreationError::Zero); }
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));
}