rust-unofficial / patterns

A catalogue of Rust design patterns, anti-patterns and idioms
https://rust-unofficial.github.io/patterns/
Mozilla Public License 2.0
7.98k stars 363 forks source link

Use index in Container-Node relationship #84

Open crlf0710 opened 5 years ago

crlf0710 commented 5 years ago

Borrowing lifetimes always becomes tricky whenever there's a container-node relationship. We can always use indexes to reference the nodes or allow the nodes to reference each other.