mirror of
https://github.com/ArthurDanjou/rustlings.git
synced 2026-02-04 21:57:49 +01:00
- Created empty solution files for various exercises in strings, modules, hashmaps, options, error handling, generics, traits, lifetimes, tests, iterators, smart pointers, threads, macros, clippy, conversions, and quizzes. - Each solution file contains a main function with a comment indicating that it will be automatically filled after completing the exercise. - Added a README.md file to provide information about the solutions and their purpose.
43 lines
1000 B
Rust
43 lines
1000 B
Rust
#[derive(PartialEq, Debug)]
|
|
enum CreationError {
|
|
Negative,
|
|
Zero,
|
|
}
|
|
|
|
#[derive(PartialEq, Debug)]
|
|
struct PositiveNonzeroInteger(u64);
|
|
|
|
impl PositiveNonzeroInteger {
|
|
fn new(value: i64) -> Result<Self, CreationError> {
|
|
// TODO: This function shouldn't always return an `Ok`.
|
|
// Read the tests below to clarify what should be returned.
|
|
match value {
|
|
x if x < 0 => Err(CreationError::Negative),
|
|
0 => Err(CreationError::Zero),
|
|
x => Ok(Self(x as u64)),
|
|
}
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
// You can optionally experiment here.
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_creation() {
|
|
assert_eq!(
|
|
PositiveNonzeroInteger::new(10),
|
|
Ok(PositiveNonzeroInteger(10)),
|
|
);
|
|
assert_eq!(
|
|
PositiveNonzeroInteger::new(-10),
|
|
Err(CreationError::Negative),
|
|
);
|
|
assert_eq!(PositiveNonzeroInteger::new(0), Err(CreationError::Zero));
|
|
}
|
|
}
|