From 30dec31a680df43d78f48d8a7e3d2fa0327bc12e Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Sat, 3 Sep 2022 21:05:12 +0200 Subject: [PATCH] rust: borrowing in match statement --- docs/rust/rust.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/rust/rust.md b/docs/rust/rust.md index a12ab45..c6c2f1a 100644 --- a/docs/rust/rust.md +++ b/docs/rust/rust.md @@ -288,6 +288,7 @@ if let = { let optional = Some(value); match optional { Some(param) => { /* do something */ }, + Some(ref param) => { /* borrow value instead of moving */ } _ => {}, }; ```