Glossary coding Term Page

Core borrowing rule

"many immutable references" or "a single mutable reference" is fine

core-borrowing-rule #coding#rust

Related Concepts

Core Idea

Core borrowing rule is "many immutable references" or "a single mutable reference" is fine, but mixing them at the same moment triggers a compile error. It usually makes the most sense alongside Immutable references.

Why It Matters Here

Mathbong reuses this term across rust posts as shared vocabulary.

Posts Mentioning This Concept