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