rustlings_solutions/error_handling/errors4.rs

36 lines
876 B
Rust
Raw Permalink Normal View History

2024-01-17 14:52:52 -05:00
// errors4.rs
//
// Execute `rustlings hint errors4` or use the `hint` watch subcommand for a
// hint.
use std::cmp::Ordering;
#[derive(PartialEq, Debug)]
struct PositiveNonzeroInteger(u64);
#[derive(PartialEq, Debug)]
enum CreationError {
Negative,
Zero,
}
impl PositiveNonzeroInteger {
fn new(value: i64) -> Result<PositiveNonzeroInteger, CreationError> {
match value.cmp(&0) {
Ordering::Greater => Ok(PositiveNonzeroInteger(value as u64)),
Ordering::Equal => Err(CreationError::Zero),
Ordering::Less => 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));
}