Azure / azure-sdk-for-rust

This repository is for active development of the *unofficial* Azure SDK for Rust. This repository is *not* supported by the Azure SDK team.
MIT License
696 stars 241 forks source link

Support hierarchical Context #1684

Closed heaths closed 3 months ago

heaths commented 3 months ago

Conceptually similar to Go, which was also similarly copied for C++. Instead of being hierarchical, however, which introduces complexity into len, is_empty, etc. - though we might only want those for testing by GA - this uses a Cow to copy the HashMap only when necessary.

Closes #1655