1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-21 16:41:24 +02:00

chore: update roadmap content json (#8802)

Co-authored-by: kamranahmedse <4921183+kamranahmedse@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-06-19 10:38:28 +01:00
committed by GitHub
parent 89932bc18d
commit 58d1a790f2

View File

@@ -841,8 +841,14 @@
},
"UZ56NKloehcxUFNuSeO19": {
"title": "Lifetimes & Borrow Checker",
"description": "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.",
"links": []
"description": "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.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Crust of Rust: Lifetime Annotations",
"url": "https://youtu.be/rAl-9HwD858",
"type": "video"
}
]
},
"R5HIVS-lyCp9b46aXqx2m": {
"title": "Explicit Lifetime Annotations",