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