It is not described in the betterC page as these features are not new for D. The betterC page only describes the differences versus the full D feature set.
Documentation for the individual features mentioned:
> no more stray pointers into expired stack frames
DIP1000 describes D's scoped pointers approach to memory safety - https://github.com/dlang/DIPs/blob/master/DIPs/DIP1000.md. This is work in progress and the document doesn't reflect latest state of things.
Conceptually, scoped slices/pointers/references are similar to concept of borrowing that you guys have in Rust.