Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,10 @@
|
|||
fn some_other_function(p: Option<Point>) {
|
||||
match p {
|
||||
Some(Point { x: 0, y: 0 }) => println!("Point is on origin"),
|
||||
Some(Point { x: 0, y: _ }) | Some(Point { x: _, y: 0 }) => println!("Point is on an axis"),
|
||||
Some(Point {x: a, y: b}) if a == b => println!("x and y are the same value"),
|
||||
Some(Point {x: ref mut a, y: ref b}) if *a > 4 && *b < 2 => println!("we got a mutable reference to x-value and an immutable reference to y-value."),
|
||||
op @ Some(p) => println!("op is the Option<Point> while p is the contained Point"),
|
||||
None => println!("We didn't get a point"),
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue