mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-12-28 14:59:18 +00:00
32 lines
745 B
Rust
32 lines
745 B
Rust
// errors4.rs
|
|
//
|
|
// 執行 `rustlings hint errors4` 或使用 `hint` watch 子命令來獲取提示。
|
|
|
|
// I AM NOT DONE
|
|
|
|
#[derive(PartialEq, Debug)]
|
|
struct PositiveNonzeroInteger(u64);
|
|
|
|
#[derive(PartialEq, Debug)]
|
|
enum CreationError {
|
|
Negative,
|
|
Zero,
|
|
}
|
|
|
|
impl PositiveNonzeroInteger {
|
|
fn new(value: i64) -> Result<PositiveNonzeroInteger, CreationError> {
|
|
// Hmm... 為什麼這裡總是返回 Ok 值呢?
|
|
Ok(PositiveNonzeroInteger(value as u64))
|
|
}
|
|
}
|
|
|
|
#[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));
|
|
}
|