diff options
| author | mo8it <mo8it@proton.me> | 2024-06-26 14:47:57 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-06-26 14:47:57 +0200 |
| commit | 25b5686dd2ab2e3d5a228a71e9631c50ea50fffe (patch) | |
| tree | c2557c05375a701e9ebd4b747425c2de8cd0c478 /solutions/12_options | |
| parent | a91888e79e69e04e57c2049cdf940a70201e1d6e (diff) | |
options3 solution
Diffstat (limited to 'solutions/12_options')
| -rw-r--r-- | solutions/12_options/options3.rs | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/solutions/12_options/options3.rs b/solutions/12_options/options3.rs index 4e18198..0081eeb 100644 --- a/solutions/12_options/options3.rs +++ b/solutions/12_options/options3.rs @@ -1 +1,26 @@ -// Solutions will be available before the stable release. Thank you for testing the beta version 🥰 +#[derive(Debug)] +struct Point { + x: i32, + y: i32, +} + +fn main() { + let optional_point = Some(Point { x: 100, y: 200 }); + + // Solution 1: Matching over the `Option` (not `&Option`) but without moving + // out of the `Some` variant. + match optional_point { + Some(ref p) => println!("Co-ordinates are {},{}", p.x, p.y), + // ^^^ added + _ => panic!("No match!"), + } + + // Solution 2: Matching over a reference (`&Option`) by added `&` before + // `optional_point`. + match &optional_point { + Some(p) => println!("Co-ordinates are {},{}", p.x, p.y), + _ => panic!("No match!"), + } + + println!("{optional_point:?}"); +} |
