2021-06-06 21:14:29 -04:00
|
|
|
// errors4.rs
|
2023-05-29 13:39:08 -04:00
|
|
|
//
|
|
|
|
// Execute `rustlings hint errors4` or use the `hint` watch subcommand for a
|
|
|
|
// hint.
|
2015-09-18 21:27:25 -04:00
|
|
|
|
2019-05-22 07:48:32 -04:00
|
|
|
#[derive(PartialEq, Debug)]
|
2015-09-18 21:27:25 -04:00
|
|
|
struct PositiveNonzeroInteger(u64);
|
|
|
|
|
2019-05-22 07:48:32 -04:00
|
|
|
#[derive(PartialEq, Debug)]
|
2015-09-18 21:27:25 -04:00
|
|
|
enum CreationError {
|
|
|
|
Negative,
|
|
|
|
Zero,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PositiveNonzeroInteger {
|
|
|
|
fn new(value: i64) -> Result<PositiveNonzeroInteger, CreationError> {
|
2023-07-28 17:05:01 -04:00
|
|
|
// Hmm... Why is this always returning an Ok value?
|
2015-09-18 21:27:25 -04:00
|
|
|
Ok(PositiveNonzeroInteger(value as u64))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_creation() {
|
|
|
|
assert!(PositiveNonzeroInteger::new(10).is_ok());
|
2019-05-22 07:48:32 -04:00
|
|
|
assert_eq!(
|
|
|
|
Err(CreationError::Negative),
|
|
|
|
PositiveNonzeroInteger::new(-10)
|
|
|
|
);
|
2015-09-18 21:27:25 -04:00
|
|
|
assert_eq!(Err(CreationError::Zero), PositiveNonzeroInteger::new(0));
|
|
|
|
}
|