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