rust: borrowing in match statement

This commit is contained in:
Marcello 2022-09-03 21:05:12 +02:00
parent 12fd8e7ff1
commit 30dec31a68

View file

@ -288,6 +288,7 @@ if let <pattern> = <value> {
let optional = Some(value);
match optional {
Some(param) => { /* do something */ },
Some(ref param) => { /* borrow value instead of moving */ }
_ => {},
};
```