From 7882a91a3d4221d872047882f1119270f80b91de Mon Sep 17 00:00:00 2001 From: Arik Chakma Date: Wed, 18 Jun 2025 18:47:30 +0600 Subject: [PATCH] feat(topic): add lifetimes resource (#8800) --- .../lifetimes--borrow-checker@UZ56NKloehcxUFNuSeO19.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/rust/content/lifetimes--borrow-checker@UZ56NKloehcxUFNuSeO19.md b/src/data/roadmaps/rust/content/lifetimes--borrow-checker@UZ56NKloehcxUFNuSeO19.md index 0d632add9..f913379ca 100644 --- a/src/data/roadmaps/rust/content/lifetimes--borrow-checker@UZ56NKloehcxUFNuSeO19.md +++ b/src/data/roadmaps/rust/content/lifetimes--borrow-checker@UZ56NKloehcxUFNuSeO19.md @@ -1,3 +1,7 @@ # Lifetimes and Borrow Checker -Lifetimes define how long references remain valid, preventing dangling references and memory safety issues. The borrow checker enforces these rules at compile time. Lifetime annotations use syntax like `'a` to specify relationships between references in function signatures when the compiler can't infer them automatically. \ No newline at end of file +Lifetimes define how long references remain valid, preventing dangling references and memory safety issues. The borrow checker enforces these rules at compile time. Lifetime annotations use syntax like `'a` to specify relationships between references in function signatures when the compiler can't infer them automatically. + +Visit the following resources to learn more: + +- [@video@Crust of Rust: Lifetime Annotations](https://youtu.be/rAl-9HwD858)